~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/xmlrpc/codehosting.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:
24
24
from zope.security.management import endInteraction
25
25
from zope.security.proxy import removeSecurityProxy
26
26
 
27
 
from lp.services.webapp import LaunchpadXMLRPCView
28
 
from lp.services.webapp.authorization import check_permission
29
 
from lp.services.webapp.interaction import setupInteractionForPerson
30
 
from lp.xmlrpc import faults
31
 
from lp.xmlrpc.helpers import return_fault
32
27
from lp.app.errors import (
33
28
    NameLookupFailed,
34
29
    NotFoundError,
79
74
from lp.registry.interfaces.sourcepackagename import ISourcePackageNameSet
80
75
from lp.services.scripts.interfaces.scriptactivity import IScriptActivitySet
81
76
from lp.services.utils import iter_split
 
77
from lp.services.webapp import LaunchpadXMLRPCView
 
78
from lp.services.webapp.authorization import check_permission
 
79
from lp.services.webapp.interaction import setupInteractionForPerson
 
80
from lp.xmlrpc import faults
 
81
from lp.xmlrpc.helpers import return_fault
82
82
 
83
83
 
84
84
UTC = pytz.timezone('UTC')