~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2011-12-22 05:37:22 UTC
  • mto: This revision was merged to the branch mainline in revision 14581.
  • Revision ID: william.grant@canonical.com-20111222053722-gm6h9zi3lioz00ky
Move librarian stuff from canonical.launchpad to lp.services.librarian. canonical.librarian remains untouched.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    SQLBase,
47
47
    sqlvalues,
48
48
    )
49
 
from canonical.launchpad.database.librarian import (
50
 
    LibraryFileAlias,
51
 
    LibraryFileContent,
52
 
    )
53
49
from canonical.launchpad.helpers import shortlist
54
50
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
55
51
from lp.archiveuploader.utils import determine_source_file_type
60
56
    SourcePackageUrgency,
61
57
    )
62
58
from lp.services.database.decoratedresultset import DecoratedResultSet
 
59
from lp.services.librarian.model import (
 
60
    LibraryFileAlias,
 
61
    LibraryFileContent,
 
62
    )
63
63
from lp.services.propertycache import cachedproperty
64
64
from lp.soyuz.enums import (
65
65
    PackageDiffStatus,