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): ...@@ -100,7 +100,7 @@ def execute_with_signal_translation(args):
child = subprocess.Popen(args, close_fds=True, preexec_fn=os.setsid) child = subprocess.Popen(args, close_fds=True, preexec_fn=os.setsid)
child_pg = child.pid child_pg = child.pid
try: try:
print 'Process %r started' % args print 'Process %r started' % (args, )
while True: while True:
time.sleep(10) time.sleep(10)
finally: 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