diff options
-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 d3561a86..9840d259 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 |