~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/__init__.py

  • Committer: William Grant
  • Date: 2011-12-30 09:16:36 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230091636-98cdy5g26oyf6q6u
format-imports

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
from storm.store import Store
24
24
from zope.component import getUtility
25
25
 
26
 
from lp.services.webapp.launchpadform import (
27
 
    action,
28
 
    LaunchpadEditFormView,
29
 
    )
30
 
from lp.services.webapp.publisher import (
31
 
    canonical_url,
32
 
    LaunchpadView,
33
 
    )
34
26
from lp.app.browser.folder import ExportedFolder
35
27
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
36
28
from lp.bugs.interfaces.bugtask import (
39
31
    )
40
32
from lp.registry.interfaces.productseries import IProductSeries
41
33
from lp.registry.interfaces.series import SeriesStatus
 
34
from lp.services.webapp.launchpadform import (
 
35
    action,
 
36
    LaunchpadEditFormView,
 
37
    )
 
38
from lp.services.webapp.publisher import (
 
39
    canonical_url,
 
40
    LaunchpadView,
 
41
    )
42
42
 
43
43
 
44
44
class StatusCount: