and rehide stdout and stderr
This commit is contained in:
parent
808c0854e8
commit
949ef991d9
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue