and rehide stdout and stderr

This commit is contained in:
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 2010-02-13 01:09:46 +00:00
parent 808c0854e8
commit 949ef991d9

View file

@ -20,8 +20,8 @@
import sys import sys
# disable any printout (this would mess the display) # disable any printout (this would mess the display)
stderr = sys.stderr stderr = sys.stderr
# sys.stdout = open('/dev/null', 'w') sys.stdout = open('/dev/null', 'w')
# sys.stderr = open('/dev/null', 'w') sys.stderr = open('/dev/null', 'w')
from connection import Connection from connection import Connection
from multiuserchat import MultiUserChat from multiuserchat import MultiUserChat