summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-02-13 01:09:46 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-02-13 01:09:46 +0000
commit949ef991d9e8e44c41802f202381c2223876f186 (patch)
treee66af74a0dbd07c7648b2370adf5df0bae5c4e70 /src
parent808c0854e810159c1c89e4599cfad38893c06646 (diff)
downloadpoezio-949ef991d9e8e44c41802f202381c2223876f186.tar.gz
poezio-949ef991d9e8e44c41802f202381c2223876f186.tar.bz2
poezio-949ef991d9e8e44c41802f202381c2223876f186.tar.xz
poezio-949ef991d9e8e44c41802f202381c2223876f186.zip
and rehide stdout and stderr
Diffstat (limited to 'src')
-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