~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/browser/branchmergeproposallisting.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:
29
29
    )
30
30
from zope.schema import Choice
31
31
 
32
 
from lp.services.config import config
33
32
from lp import _
34
 
from lp.services.webapp.authorization import check_permission
35
 
from lp.services.webapp.batching import TableBatchNavigator
36
33
from lp.app.browser.launchpadform import (
37
34
    custom_widget,
38
35
    LaunchpadFormView,
53
50
    IBranchMergeProposalListingBatchNavigator,
54
51
    )
55
52
from lp.code.interfaces.hasbranches import IHasMergeProposals
 
53
from lp.services.config import config
56
54
from lp.services.propertycache import (
57
55
    cachedproperty,
58
56
    get_property_cache,
59
57
    )
 
58
from lp.services.webapp.authorization import check_permission
 
59
from lp.services.webapp.batching import TableBatchNavigator
60
60
 
61
61
 
62
62
class BranchMergeProposalListingItem: