Commit 2dfa0a97 authored by Vincent Pelletier's avatar Vincent Pelletier

Don't write to some dynamically-named, pwd-relative file.

parent de91c1ff
...@@ -52,7 +52,7 @@ def safeRpcCall(function, *args): ...@@ -52,7 +52,7 @@ def safeRpcCall(function, *args):
return function(*args) return function(*args)
except: except:
traceback.print_exc() traceback.print_exc()
pprint.pprint(args, file(function._Method__name, 'w')) pprint.pprint(args)
time.sleep(retry) time.sleep(retry)
retry += retry >> 1 retry += retry >> 1
......
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