~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/make-dummy-hosted-branches

Merged fix-retest-colorize into redo-read-only-transactions-in-buildmaster, resolving several import conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
import transaction
26
26
from zope.component import getUtility
27
27
 
28
 
# Until we completely kill canonical.launchpad.database.__init__.py and remove
29
 
# all of the import *'s we need to import it first here.
30
 
import canonical.launchpad.database
31
 
 
32
28
from lp.code.enums import BranchType
33
29
from lp.code.model.branch import Branch
34
30
from lp.codehosting.tests.helpers import make_bazaar_branch_and_tree
35
 
from canonical.config import config
36
 
from canonical.database.sqlbase import sqlvalues
 
31
from lp.services.config import config
 
32
from lp.services.database.sqlbase import sqlvalues
37
33
from lp.services.scripts import execute_zcml_for_scripts
38
34
 
39
35