~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/mirror-branch.py

  • Committer: Curtis Hovey
  • Date: 2011-12-28 17:03:06 UTC
  • mto: This revision was merged to the branch mainline in revision 14605.
  • Revision ID: curtis.hovey@canonical.com-20111228170306-n9fz94h85ckaoaf3
Separate test-authoring classes from test-running classes.

Show diffs side-by-side

added added

removed removed

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