~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-30 10:09:30 UTC
  • mfrom: (14606.2.8 apocalibrarian)
  • Revision ID: launchpad@pqm.canonical.com-20111230100930-kp3e0l6wakissewm
[r=wgrant][no-qa] Move canonical.librarian to
        lp.services.librarian(server).

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    Interface,
47
47
    )
48
48
 
49
 
from lp.services.config import config
50
49
from canonical.database.constants import (
51
50
    DEFAULT,
52
51
    UTC_NOW,
56
55
    session_store,
57
56
    SQLBase,
58
57
    )
59
 
from canonical.librarian.interfaces import (
60
 
    DownloadFailed,
61
 
    ILibrarianClient,
62
 
    IRestrictedLibrarianClient,
63
 
    LIBRARIAN_SERVER_DEFAULT_TIMEOUT,
64
 
    )
 
58
from lp.services.config import config
65
59
from lp.services.database.lpstorm import IMasterStore
66
60
from lp.services.database.stormbase import StormBase
67
61
from lp.services.librarian.interfaces import (
71
65
    ILibraryFileContent,
72
66
    ILibraryFileDownloadCount,
73
67
    )
 
68
from lp.services.librarian.interfaces.client import (
 
69
    DownloadFailed,
 
70
    ILibrarianClient,
 
71
    IRestrictedLibrarianClient,
 
72
    LIBRARIAN_SERVER_DEFAULT_TIMEOUT,
 
73
    )
74
74
 
75
75
 
76
76
class LibraryFileContent(SQLBase):