summaryrefslogtreecommitdiff
path: root/src/client.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-02-14 03:51:03 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-02-14 03:51:03 +0000
commit64d9f44833ce199fb463e205add95ce7a8fcc5ce (patch)
tree50cc3c8c6855e961b7373b615ea26567d07b1528 /src/client.py
parentde80b15e89a2caf62eb40c00d96b1d061a1383b9 (diff)
downloadpoezio-64d9f44833ce199fb463e205add95ce7a8fcc5ce.tar.gz
poezio-64d9f44833ce199fb463e205add95ce7a8fcc5ce.tar.bz2
poezio-64d9f44833ce199fb463e205add95ce7a8fcc5ce.tar.xz
poezio-64d9f44833ce199fb463e205add95ce7a8fcc5ce.zip
fixed #1138 #1111
Diffstat (limited to 'src/client.py')
-rw-r--r--src/client.py4
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