fix typo: stdout

This commit is contained in:
ThomasV 2015-02-11 21:05:33 +01:00
parent 018e073dd3
commit 03a88743a3
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ class Network(threading.Thread):
out['result'] = f(*params)
except BaseException as e:
out['error'] = str(e)
traceback.print_exc(file=sys.stout)
traceback.print_exc(file=sys.stdout)
print_error("network error", str(e))
self.response_queue.put(out)