~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/widgets/launchpadtarget.py

  • Committer: Curtis Hovey
  • Date: 2011-05-27 21:03:22 UTC
  • mto: This revision was merged to the branch mainline in revision 13136.
  • Revision ID: curtis.hovey@canonical.com-20110527210322-yv1o7vkwr9u25t34
Moved templates to the packages that use them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
from zope.interface import implements
24
24
from zope.schema import Choice
25
25
 
 
26
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
26
27
from canonical.launchpad.webapp.interfaces import (
27
28
    IAlwaysSubmittedWidget,
28
29
    IMultiLineWidgetLayout,
31
32
    NotFoundError,
32
33
    UnexpectedFormData,
33
34
    )
34
 
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
35
35
from lp.app.validators import LaunchpadValidationError
36
36
from lp.app.widgets.itemswidgets import LaunchpadDropdownWidget
37
37
from lp.registry.interfaces.distribution import IDistribution