~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/scripts/harness.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:
30
30
from zope.interface.verify import verifyObject
31
31
from zope.security.proxy import removeSecurityProxy
32
32
 
 
33
from lp.answers.model.question import Question
 
34
from lp.blueprints.model.specification import Specification
 
35
from lp.bugs.model.bug import Bug
 
36
from lp.registry.model.distribution import Distribution
 
37
from lp.registry.model.distroseries import DistroSeries
 
38
from lp.registry.model.person import Person
 
39
from lp.registry.model.product import Product
 
40
from lp.registry.model.projectgroup import ProjectGroup
33
41
from lp.services.scripts import execute_zcml_for_scripts
34
42
from lp.services.webapp import canonical_url
35
43
from lp.services.webapp.interfaces import (
39
47
    MASTER_FLAVOR,
40
48
    SLAVE_FLAVOR,
41
49
    )
42
 
from lp.answers.model.question import Question
43
 
from lp.blueprints.model.specification import Specification
44
 
from lp.bugs.model.bug import Bug
45
 
from lp.registry.model.distribution import Distribution
46
 
from lp.registry.model.distroseries import DistroSeries
47
 
from lp.registry.model.person import Person
48
 
from lp.registry.model.product import Product
49
 
from lp.registry.model.projectgroup import ProjectGroup
50
50
from lp.testing.factory import LaunchpadObjectFactory
51
51
 
52
52