~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/unautovacuumable.py

  • Committer: William Grant
  • Date: 2011-12-30 06:47:17 UTC
  • mto: This revision was merged to the branch mainline in revision 14610.
  • Revision ID: william.grant@canonical.com-20111230064717-n5re5t6we5w8o17z
Replace canonical.database usage everywhere, and format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
__metaclass__ = type
17
17
__all__ = []
18
18
 
 
19
# pylint: disable-msg=W0403
 
20
import _pythonpath
 
21
 
19
22
from distutils.version import LooseVersion
20
23
from optparse import OptionParser
21
24
import sys
22
25
import time
23
26
 
24
 
# pylint: disable-msg=W0403
25
 
import _pythonpath
26
 
 
27
 
from canonical.database.sqlbase import (
 
27
from lp.services.database.sqlbase import (
28
28
    connect,
29
29
    ISOLATION_LEVEL_AUTOCOMMIT,
30
30
    )