~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/mirror-branch.py

  • Committer: William Grant
  • Date: 2012-01-01 03:13:08 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101031308-ozhin5aaoxj5th20
scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
 
31
31
import _pythonpath
 
32
 
32
33
from optparse import OptionParser
33
34
import os
34
35
import resource
38
39
 
39
40
from lp.code.enums import BranchType
40
41
from lp.codehosting.puller.worker import (
41
 
    install_worker_ui_factory, PullerWorker, PullerWorkerProtocol)
 
42
    install_worker_ui_factory,
 
43
    PullerWorker,
 
44
    PullerWorkerProtocol,
 
45
    )
42
46
from lp.services.webapp.errorlog import globalErrorUtility
43
47
 
44
48