Commit 10f7f5ef authored by Alain Takoudjou's avatar Alain Takoudjou Committed by Laurent S

fix convert process arguments to string formatting

parent e6ae6969
......@@ -100,7 +100,7 @@ def execute_with_signal_translation(args):
child = subprocess.Popen(args, close_fds=True, preexec_fn=os.setsid)
child_pg = child.pid
try:
print 'Process %r started' % args
print 'Process %r started' % (args, )
while True:
time.sleep(10)
finally:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment