~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-03 11:23:34 UTC
  • mfrom: (13457.6.16 upgrade-stderr)
  • Revision ID: launchpad@pqm.canonical.com-20110803112334-acnupsa7jmzmdeet
[r=stevenk][bug=819751] Fix the implementation of several methods in
 LoggingUIFactory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    SimpleVocabulary,
32
32
    )
33
33
 
34
 
from lp.app.widgets.itemswidgets import LaunchpadRadioWidget
35
 
from lp.services.webapp import canonical_url
36
 
from lp.services.webapp.interfaces import ILaunchBag
37
 
from lp.services.webapp.menu import (
 
34
from canonical.launchpad.webapp import canonical_url
 
35
from canonical.launchpad.webapp.interfaces import ILaunchBag
 
36
from canonical.launchpad.webapp.menu import (
38
37
    escape,
39
38
    structured,
40
39
    )
 
40
from lp.app.widgets.itemswidgets import LaunchpadRadioWidget
41
41
 
42
42
 
43
43
class SuggestionWidget(LaunchpadRadioWidget):