~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/browser/faqtarget.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
    ]
12
12
 
13
13
from lp import _
14
 
from lp.services.webapp import (
15
 
    canonical_url,
16
 
    stepthrough,
17
 
    )
18
14
from lp.answers.interfaces.faq import IFAQ
19
15
from lp.app.browser.launchpadform import (
20
16
    action,
23
19
    )
24
20
from lp.app.errors import NotFoundError
25
21
from lp.app.widgets.textwidgets import TokensTextWidget
 
22
from lp.services.webapp import (
 
23
    canonical_url,
 
24
    stepthrough,
 
25
    )
26
26
 
27
27
 
28
28
class FAQTargetNavigationMixin: