~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/model/queue.py

  • Committer: William Grant
  • Date: 2011-12-30 01:10:37 UTC
  • mto: (14606.3.6 apocaremains)
  • mto: This revision was merged to the branch mainline in revision 14608.
  • Revision ID: william.grant@canonical.com-20111230011037-3g35hpwgat0kv2dz
Move canonical.librarian.{client,utils} to lp.services.librarian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
from zope.component import getUtility
40
40
from zope.interface import implements
41
41
 
42
 
from lp.services.config import config
43
42
from canonical.database.constants import UTC_NOW
44
43
from canonical.database.datetimecol import UtcDateTimeCol
45
44
from canonical.database.enumcol import EnumCol
48
47
    sqlvalues,
49
48
    )
50
49
from canonical.librarian.interfaces import DownloadFailed
51
 
from canonical.librarian.utils import copy_and_close
52
50
from lp.app.errors import NotFoundError
53
51
# XXX 2009-05-10 julian
54
52
# This should not import from archivepublisher, but to avoid
59
57
from lp.archiveuploader.tagfiles import parse_tagfile_content
60
58
from lp.registry.interfaces.pocket import PackagePublishingPocket
61
59
from lp.registry.model.sourcepackagename import SourcePackageName
 
60
from lp.services.config import config
62
61
from lp.services.database.lpstorm import (
63
62
    IMasterStore,
64
63
    IStore,
65
64
    )
66
65
from lp.services.librarian.model import LibraryFileAlias
 
66
from lp.services.librarian.utils import copy_and_close
67
67
from lp.services.mail.signedmessage import strip_pgp_signature
68
68
from lp.services.propertycache import cachedproperty
69
69
from lp.soyuz.adapters.notification import notify