diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-02-13 01:08:44 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-02-13 01:08:44 +0000 |
commit | 808c0854e810159c1c89e4599cfad38893c06646 (patch) | |
tree | 3cfc95dffc2c260b9ea2a9fad1e1d0001416fc94 /src/client.py | |
parent | e13db0a9bc5ea2c2f52f029643a98e993258c998 (diff) | |
download | poezio-808c0854e810159c1c89e4599cfad38893c06646.tar.gz poezio-808c0854e810159c1c89e4599cfad38893c06646.tar.bz2 poezio-808c0854e810159c1c89e4599cfad38893c06646.tar.xz poezio-808c0854e810159c1c89e4599cfad38893c06646.zip |
fixed #1163
Diffstat (limited to 'src/client.py')
-rw-r--r-- | src/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.py b/src/client.py index 9840d259..d3561a86 100644 --- a/src/client.py +++ b/src/client.py @@ -20,8 +20,8 @@ import sys # disable any printout (this would mess the display) stderr = sys.stderr -sys.stdout = open('/dev/null', 'w') -sys.stderr = open('/dev/null', 'w') +# sys.stdout = open('/dev/null', 'w') +# sys.stderr = open('/dev/null', 'w') from connection import Connection from multiuserchat import MultiUserChat |