diff options
Diffstat (limited to 'src/client.py')
-rw-r--r-- | src/client.py | 2 |
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): |