~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/rosetta-branches.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:
14
14
__metaclass__ = type
15
15
 
16
16
import _pythonpath
 
17
 
17
18
from zope.component import getUtility
18
19
 
 
20
from lp.code.interfaces.branchjob import IRosettaUploadJobSource
 
21
from lp.codehosting.vfs.branchfs import get_ro_server
19
22
from lp.services.config import config
20
 
from lp.codehosting.vfs.branchfs import get_ro_server
21
23
from lp.services.job.runner import JobRunner
22
 
from lp.code.interfaces.branchjob import IRosettaUploadJobSource
23
24
from lp.services.scripts.base import LaunchpadCronScript
24
25
from lp.services.webapp.errorlog import globalErrorUtility
25
26