summaryrefslogtreecommitdiff
path: root/src/client.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-01-30 02:50:24 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-01-30 02:50:24 +0000
commit95c7ad4ac82762e3e017cd8ef85d267add803126 (patch)
treee98d55b51030718874810c5e70f08b5dbfc2559d /src/client.py
parent33cf82e0947be35bf4e4666d0db632b60e5c27f9 (diff)
downloadpoezio-95c7ad4ac82762e3e017cd8ef85d267add803126.tar.gz
poezio-95c7ad4ac82762e3e017cd8ef85d267add803126.tar.bz2
poezio-95c7ad4ac82762e3e017cd8ef85d267add803126.tar.xz
poezio-95c7ad4ac82762e3e017cd8ef85d267add803126.zip
on peut choisir son nick lors d'un /join machin@truc/NICK
Diffstat (limited to 'src/client.py')
-rw-r--r--src/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.py b/src/client.py
index 90d08415..6ed27272 100644
--- a/src/client.py
+++ b/src/client.py
@@ -25,9 +25,9 @@ from handler import Handler
from gui import Gui
from curses import wrapper, initscr
+sys.stderr = open('logs', 'a')
if len(sys.argv) == 1: # not debug, so hide any error message and disable C-c
import signal
- sys.stderr = open('logs', 'a')
signal.signal(signal.SIGINT, signal.SIG_IGN)
class Client(object):