From 03a88743a3fae6b16c7ba8c5b924f1575203ffec Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 11 Feb 2015 21:05:33 +0100 Subject: [PATCH] fix typo: stdout --- lib/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/network.py b/lib/network.py index de6ac30a7..e96248777 100644 --- a/lib/network.py +++ b/lib/network.py @@ -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)