~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2011-12-30 02:21:12 UTC
  • mto: (14606.3.6 apocaremains)
  • mto: This revision was merged to the branch mainline in revision 14608.
  • Revision ID: william.grant@canonical.com-20111230022112-1b1pdbwt1suongbu
Drop fatsam.dia. It's more than 6 years out of date.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
from zope.component import getUtility
13
13
from zope.interface import implements
14
14
 
15
 
from lp.code.enums import BranchType
16
 
from lp.code.interfaces.branchpuller import IBranchPuller
17
 
from lp.code.model.branch import Branch
18
 
from lp.services.database.constants import UTC_NOW
 
15
from canonical.database.constants import UTC_NOW
19
16
from lp.services.webapp.interfaces import (
20
17
    DEFAULT_FLAVOR,
21
18
    IStoreSelector,
22
19
    MAIN_STORE,
23
20
    )
 
21
from lp.code.enums import BranchType
 
22
from lp.code.interfaces.branchpuller import IBranchPuller
 
23
from lp.code.model.branch import Branch
24
24
 
25
25
 
26
26
class BranchPuller: