~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/distroseriesdifference.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:
26
26
    SimpleVocabulary,
27
27
    )
28
28
 
29
 
from lp.services.webapp import (
30
 
    LaunchpadView,
31
 
    Navigation,
32
 
    stepthrough,
33
 
    )
34
 
from lp.services.webapp.authorization import check_permission
35
 
from lp.services.webapp.launchpadform import custom_widget
36
29
from lp.app.browser.launchpadform import LaunchpadFormView
37
30
from lp.registry.enum import (
38
31
    DistroSeriesDifferenceStatus,
53
46
    IConversation,
54
47
    )
55
48
from lp.services.propertycache import cachedproperty
 
49
from lp.services.webapp import (
 
50
    LaunchpadView,
 
51
    Navigation,
 
52
    stepthrough,
 
53
    )
 
54
from lp.services.webapp.authorization import check_permission
 
55
from lp.services.webapp.launchpadform import custom_widget
56
56
 
57
57
 
58
58
class DistroSeriesDifferenceNavigation(Navigation):