~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugattachment.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:
20
20
from zope.contenttype import guess_content_type
21
21
from zope.interface import implements
22
22
 
23
 
from lp.services.webapp import (
24
 
    canonical_url,
25
 
    custom_widget,
26
 
    GetitemNavigation,
27
 
    Navigation,
28
 
    )
29
 
from lp.services.webapp.interfaces import (
30
 
    ICanonicalUrlData,
31
 
    ILaunchBag,
32
 
    )
33
 
from lp.services.webapp.menu import structured
34
23
from lp.app.browser.launchpadform import (
35
24
    action,
36
25
    LaunchpadFormView,
48
37
    ProxiedLibraryFileAlias,
49
38
    )
50
39
from lp.services.librarian.interfaces import ILibraryFileAliasWithParent
 
40
from lp.services.webapp import (
 
41
    canonical_url,
 
42
    custom_widget,
 
43
    GetitemNavigation,
 
44
    Navigation,
 
45
    )
 
46
from lp.services.webapp.interfaces import (
 
47
    ICanonicalUrlData,
 
48
    ILaunchBag,
 
49
    )
 
50
from lp.services.webapp.menu import structured
51
51
 
52
52
 
53
53
class BugAttachmentContentCheck: