~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/driver.py

  • Committer: Curtis Hovey
  • Date: 2011-05-27 20:03:56 UTC
  • mto: This revision was merged to the branch mainline in revision 13136.
  • Revision ID: curtis.hovey@canonical.com-20110527200356-5436d46qjkflku1q
Updated imports of IHasDriver.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
from zope.interface import providedBy
10
10
from zope.security.proxy import removeSecurityProxy
11
11
 
12
 
from canonical.launchpad.interfaces.launchpad import IHasAppointedDriver
13
12
from canonical.launchpad.webapp import (
14
13
    action,
15
14
    canonical_url,
16
15
    LaunchpadEditFormView,
17
16
    )
18
17
from lp.registry.interfaces.productseries import IProductSeries
 
18
from lp.registry.interfaces.role import IHasAppointedDriver
19
19
 
20
20
 
21
21
class AppointDriverView(LaunchpadEditFormView):