~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/specificationdependency.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:
11
11
    'SpecificationDependencyTreeView',
12
12
    ]
13
13
 
 
14
from zope.interface import Interface
 
15
 
14
16
from lazr.restful.interface import copy_field
15
 
from zope.interface import Interface
16
17
 
17
 
from lp import _
 
18
from canonical.launchpad import _
 
19
from canonical.launchpad.webapp import (
 
20
    canonical_url,
 
21
    LaunchpadView,
 
22
    )
18
23
from lp.app.browser.launchpadform import (
19
24
    action,
20
25
    LaunchpadFormView,
23
28
    ISpecificationDependency,
24
29
    ISpecificationDependencyRemoval,
25
30
    )
26
 
from lp.services.webapp import (
27
 
    canonical_url,
28
 
    LaunchpadView,
29
 
    )
30
31
 
31
32
 
32
33
class AddSpecificationDependencySchema(Interface):