~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/buglinktarget.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:
21
21
from zope.interface import providedBy
22
22
from zope.security.interfaces import Unauthorized
23
23
 
24
 
from lp.services.config import config
25
24
from lp import _
26
 
from lp.services.searchbuilder import any
27
 
from lp.services.webapp import canonical_url
28
 
from lp.services.webapp.authorization import check_permission
29
 
from lp.services.webapp.publisher import LaunchpadView
30
25
from lp.app.browser.launchpadform import (
31
26
    action,
32
27
    custom_widget,
42
37
    BugTaskSearchParams,
43
38
    IBugTaskSet,
44
39
    )
 
40
from lp.services.config import config
45
41
from lp.services.propertycache import (
46
42
    cachedproperty,
47
43
    get_property_cache,
48
44
    )
 
45
from lp.services.searchbuilder import any
 
46
from lp.services.webapp import canonical_url
 
47
from lp.services.webapp.authorization import check_permission
 
48
from lp.services.webapp.publisher import LaunchpadView
49
49
 
50
50
 
51
51
class BugLinkView(LaunchpadFormView):