~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-15 10:35:32 UTC
  • mfrom: (14517.1.3 new-bzr)
  • Revision ID: launchpad@pqm.canonical.com-20111215103532-q2m4uyk0r8ugiayx
[r=sinzui, poolie][bug=509016] Always load foreign plugins,
 but restrict probers to avoid accidentally opening foreign branches.
 (re-land)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    sqlvalues,
27
27
    )
28
28
from canonical.launchpad.helpers import ensure_unicode
29
 
from lp.services.database.lpstorm import IStore
 
29
from canonical.launchpad.interfaces.lpstorm import IStore
30
30
from canonical.launchpad.webapp.vocabulary import (
31
31
    BatchedCountableIterator,
32
32
    NamedSQLObjectHugeVocabulary,
33
33
    )
34
34
from lp.app.errors import NotFoundError
35
 
from lp.soyuz.enums import PackagePublishingStatus
36
35
from lp.soyuz.interfaces.binarypackagename import (
37
36
    IBinaryPackageName,
38
37
    IBinaryPackageNameSet,
39
38
    )
 
39
from lp.soyuz.enums import PackagePublishingStatus
40
40
from lp.soyuz.model.binarypackagerelease import BinaryPackageRelease
41
41
 
42
42