~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-31 00:16:50 UTC
  • mfrom: (14606.3.7 apocaremains)
  • Revision ID: launchpad@pqm.canonical.com-20111231001650-pjeyhfjhm6mg3yp8
[r=wgrant][no-qa] Merge canonical.database into lp.services.database.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from zope.interface import implements
20
20
from zope.security.proxy import removeSecurityProxy
21
21
 
22
 
from canonical.database.constants import UTC_NOW
23
 
from lp.services.webapp.interfaces import (
24
 
    DEFAULT_FLAVOR,
25
 
    IStoreSelector,
26
 
    MAIN_STORE,
27
 
    )
28
22
from lp.code.enums import (
29
23
    BranchLifecycleStatus,
30
24
    BranchSubscriptionDiffSize,
73
67
from lp.registry.interfaces.projectgroup import IProjectGroup
74
68
from lp.registry.interfaces.sourcepackagename import ISourcePackageNameSet
75
69
from lp.registry.model.sourcepackage import SourcePackage
 
70
from lp.services.database.constants import UTC_NOW
76
71
from lp.services.utils import iter_split
 
72
from lp.services.webapp.interfaces import (
 
73
    DEFAULT_FLAVOR,
 
74
    IStoreSelector,
 
75
    MAIN_STORE,
 
76
    )
77
77
 
78
78
 
79
79
class _BaseNamespace: