~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/vocabularies.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-20 04:38:42 UTC
  • mfrom: (14550.1.2 refactor-imports-redux)
  • Revision ID: launchpad@pqm.canonical.com-20111220043842-5djlrud7wls7cqex
[r=stevenk][no-qa] Re-run format-imports over lib/lp and
 lib/canonical/launchpad.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    CONTAINSSTRING,
26
26
    OR,
27
27
    )
28
 
 
29
28
from storm.expr import (
30
29
    And,
31
30
    Or,
32
31
    )
33
 
 
34
32
from zope.component import getUtility
35
33
from zope.interface import implements
36
34
from zope.schema.interfaces import (
47
45
    shortlist,
48
46
    )
49
47
from canonical.launchpad.interfaces.lpstorm import IStore
 
48
from canonical.launchpad.webapp.interfaces import ILaunchBag
50
49
from canonical.launchpad.webapp.vocabulary import (
51
50
    CountableIterator,
52
51
    IHugeVocabulary,
53
52
    NamedSQLObjectVocabulary,
54
53
    SQLObjectVocabularyBase,
55
54
    )
56
 
from canonical.launchpad.webapp.interfaces import ILaunchBag
57
55
from lp.app.browser.stringformatter import FormattersAPI
58
56
from lp.app.enums import ServiceUsage
59
57
from lp.bugs.interfaces.bugtask import IBugTask