~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/codeimportmachine.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.component import getUtility
20
20
from zope.interface import implements
21
21
 
22
 
from lp.services.config import config
23
 
from canonical.database.constants import (
24
 
    DEFAULT,
25
 
    UTC_NOW,
26
 
    )
27
 
from canonical.database.datetimecol import UtcDateTimeCol
28
 
from canonical.database.enumcol import EnumCol
29
 
from canonical.database.sqlbase import SQLBase
30
22
from lp.code.enums import (
31
23
    CodeImportMachineOfflineReason,
32
24
    CodeImportMachineState,
36
28
    ICodeImportMachine,
37
29
    ICodeImportMachineSet,
38
30
    )
 
31
from lp.services.config import config
 
32
from lp.services.database.constants import (
 
33
    DEFAULT,
 
34
    UTC_NOW,
 
35
    )
 
36
from lp.services.database.datetimecol import UtcDateTimeCol
 
37
from lp.services.database.enumcol import EnumCol
 
38
from lp.services.database.sqlbase import SQLBase
39
39
 
40
40
 
41
41
class CodeImportMachine(SQLBase):