~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/branchlookup.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    )
23
23
from zope.interface import implements
24
24
 
25
 
from lp.services.config import config
26
 
from lp.services.database.lpstorm import (
27
 
    IMasterStore,
28
 
    ISlaveStore,
29
 
    )
30
 
from lp.services.webapp.authorization import check_permission
31
 
from lp.services.webapp.interfaces import (
32
 
    DEFAULT_FLAVOR,
33
 
    IStoreSelector,
34
 
    MAIN_STORE,
35
 
    )
36
25
from lp.app.validators.name import valid_name
37
26
from lp.code.errors import (
38
27
    CannotHaveLinkedBranch,
71
60
from lp.registry.model.person import Person
72
61
from lp.registry.model.product import Product
73
62
from lp.registry.model.sourcepackagename import SourcePackageName
 
63
from lp.services.config import config
 
64
from lp.services.database.lpstorm import (
 
65
    IMasterStore,
 
66
    ISlaveStore,
 
67
    )
74
68
from lp.services.utils import iter_split
 
69
from lp.services.webapp.authorization import check_permission
 
70
from lp.services.webapp.interfaces import (
 
71
    DEFAULT_FLAVOR,
 
72
    IStoreSelector,
 
73
    MAIN_STORE,
 
74
    )
75
75
 
76
76
 
77
77
def adapt(provided, interface):