~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-12-18 15:13:07 UTC
  • mto: This revision was merged to the branch mainline in revision 14547.
  • Revision ID: curtis.hovey@canonical.com-20111218151307-sdm2gzobt5tplbe0
Moved badges to lp.app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    ]
10
10
 
11
11
 
12
 
from lp import _
 
12
from canonical.launchpad import _
 
13
from canonical.launchpad.webapp.publisher import LaunchpadView
13
14
from lp.code.interfaces.branch import DEFAULT_BRANCH_STATUS_IN_LISTING
14
15
from lp.code.interfaces.branchcollection import IBranchCollection
15
16
from lp.code.interfaces.revisioncache import IRevisionCache
16
17
from lp.services.browser_helpers import get_plural_text
17
18
from lp.services.propertycache import cachedproperty
18
 
from lp.services.webapp.publisher import LaunchpadView
19
19
 
20
20
 
21
21
class BranchCountSummaryView(LaunchpadView):