Commit 52b91edb authored by Sebastien Robin's avatar Sebastien Robin Committed by Julien Muchembled

typos

parent 1804e3c3
...@@ -55,11 +55,11 @@ def safeRpcCall(function, *args): ...@@ -55,11 +55,11 @@ def safeRpcCall(function, *args):
time.sleep(retry) time.sleep(retry)
retry += retry >> 1 retry += retry >> 1
def getInputOutputFileList(config, command_name) def getInputOutputFileList(config, command_name):
stdout = open(os.path.join( stdout = open(os.path.join(
config['instance_root'],'.%s_out' % command_name), config['instance_root'],'.%s_out' % command_name),
'w+') 'w+')
stdout.write("%s\n" command_name) stdout.write("%s\n" % command_name)
stderr = open(os.path.join( stderr = open(os.path.join(
config['instance_root'],'.%s_err' % command_name), config['instance_root'],'.%s_err' % command_name),
'w+') 'w+')
......
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