~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/browser/codeimport.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
from zope.schema import Choice
31
31
 
32
32
from lp import _
33
 
from lp.services.webapp import (
34
 
    canonical_url,
35
 
    LaunchpadView,
36
 
    Navigation,
37
 
    stepto,
38
 
    )
39
 
from lp.services.webapp.batching import BatchNavigator
40
 
from lp.services.webapp.breadcrumb import Breadcrumb
41
 
from lp.services.webapp.menu import structured
42
33
from lp.app.browser.launchpadform import (
43
34
    action,
44
35
    custom_widget,
79
70
from lp.registry.interfaces.product import IProduct
80
71
from lp.services.fields import URIField
81
72
from lp.services.propertycache import cachedproperty
 
73
from lp.services.webapp import (
 
74
    canonical_url,
 
75
    LaunchpadView,
 
76
    Navigation,
 
77
    stepto,
 
78
    )
 
79
from lp.services.webapp.batching import BatchNavigator
 
80
from lp.services.webapp.breadcrumb import Breadcrumb
 
81
from lp.services.webapp.menu import structured
82
82
 
83
83
 
84
84
class CodeImportSetNavigation(Navigation):