~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/browser/tests/test_questiontarget.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-20 04:38:42 UTC
  • mfrom: (14550.1.2 refactor-imports-redux)
  • Revision ID: launchpad@pqm.canonical.com-20111220043842-5djlrud7wls7cqex
[r=stevenk][no-qa] Re-run format-imports over lib/lp and
 lib/canonical/launchpad.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
__metaclass__ = type
7
7
 
8
8
import os
9
 
from simplejson import dumps
10
9
from urllib import quote
11
10
 
12
11
from BeautifulSoup import BeautifulSoup
 
12
from lazr.restful.interfaces import (
 
13
    IJSONRequestCache,
 
14
    IWebServiceClientRequest,
 
15
    )
 
16
from simplejson import dumps
13
17
from storm.store import Store
14
18
from zope.component import getUtility
15
19
from zope.security.proxy import removeSecurityProxy
16
20
from zope.traversing.browser import absoluteURL
17
21
 
18
 
from lazr.restful.interfaces import (
19
 
    IJSONRequestCache,
20
 
    IWebServiceClientRequest,
21
 
    )
22
 
 
 
22
from canonical.launchpad.testing.pages import find_tag_by_id
23
23
from canonical.launchpad.webapp import canonical_url
24
 
from canonical.launchpad.testing.pages import find_tag_by_id
25
24
from canonical.testing.layers import (
26
25
    DatabaseFunctionalLayer,
27
26
    LaunchpadFunctionalLayer,