~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/specificationbranch.py

  • Committer: Curtis Hovey
  • Date: 2011-08-12 14:39:51 UTC
  • mto: This revision was merged to the branch mainline in revision 13685.
  • Revision ID: curtis.hovey@canonical.com-20110812143951-74vfvrt37gtt4fz2
Sorted imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
    'SpecificationBranchURL',
13
13
    ]
14
14
 
15
 
from lazr.restful.utils import smartquote
16
15
from zope.interface import implements
17
16
 
18
 
from lp import _
 
17
from canonical.launchpad import _
 
18
from canonical.launchpad.webapp import (
 
19
    canonical_url,
 
20
    )
 
21
from canonical.launchpad.webapp.interfaces import ICanonicalUrlData
 
22
from canonical.lazr.utils import smartquote
19
23
from lp.app.browser.launchpadform import (
20
24
    action,
21
25
    LaunchpadEditFormView,
22
26
    LaunchpadFormView,
23
27
    )
24
28
from lp.blueprints.interfaces.specificationbranch import ISpecificationBranch
25
 
from lp.services.webapp import canonical_url
26
 
from lp.services.webapp.interfaces import ICanonicalUrlData
27
29
 
28
30
 
29
31
class SpecificationBranchURL: