~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/importd/CommandLineRunner.py

merge from rf

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
from importd.Job import Job
16
16
import canonical
17
17
 
18
 
# XXX: disable use of gnarly in pybaz. Temporarily needed until baz support is
19
 
# removed from cscvs -- David Allouche 2006-09-07
20
 
import pybaz
21
 
import pybaz.backends.forkexec
22
 
pybaz.backend.spawning_strategy = pybaz.backends.forkexec.PyArchSpawningStrategy
23
 
 
24
 
# XXX: disable use of twisted process handling. Temporarily needed until uses
25
 
# of gnarly are removed from cscvs -- David Allouche 2006-09-07
26
 
import gnarly.process
27
 
import gnarly.process.unix_process
28
 
gnarly.process.Popen = gnarly.process.unix_process.Popen
29
 
 
30
18
 
31
19
class Doer(object):
32
20