~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/temporaryblobstorage/model.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 12:41:32 UTC
  • mfrom: (14578.2.5 librarian-services)
  • Revision ID: launchpad@pqm.canonical.com-20111222124132-s1yqnjjb1jl7384h
[r=wgrant][no-qa] Move most non-server librarian stuff from around
        the tree to lp.services.librarian. canonical.launchpad.{browser,
        database} are no longer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from canonical.database.constants import DEFAULT
28
28
from canonical.database.datetimecol import UtcDateTimeCol
29
29
from canonical.database.sqlbase import SQLBase
30
 
from canonical.launchpad.interfaces.librarian import ILibraryFileAliasSet
 
30
from lp.services.job.interfaces.job import JobStatus
 
31
from lp.services.librarian.interfaces import ILibraryFileAliasSet
31
32
from lp.services.temporaryblobstorage.interfaces import (
32
33
    BlobTooLarge,
33
34
    ITemporaryBlobStorage,
34
35
    ITemporaryStorageManager,
35
36
    )
36
 
from lp.services.job.interfaces.job import JobStatus
37
37
from lp.services.utils import utc_now
38
38
 
39
39