summaryrefslogtreecommitdiff
path: root/src/connection.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-06-13 18:58:39 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-06-13 18:58:39 +0000
commit08c81a900c3301088659b9c08246239bf3dd2bea (patch)
tree1410b143c326bfbb8a72de8c3aab962bfeaa2d7d /src/connection.py
parent9c492501f4406e74ba989e5519f40d723f52873d (diff)
downloadpoezio-08c81a900c3301088659b9c08246239bf3dd2bea.tar.gz
poezio-08c81a900c3301088659b9c08246239bf3dd2bea.tar.bz2
poezio-08c81a900c3301088659b9c08246239bf3dd2bea.tar.xz
poezio-08c81a900c3301088659b9c08246239bf3dd2bea.zip
enable the tracebacks
Diffstat (limited to 'src/connection.py')
-rw-r--r--src/connection.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/connection.py b/src/connection.py
index 8ac8fc21..3b4e6e21 100644
--- a/src/connection.py
+++ b/src/connection.py
@@ -30,7 +30,6 @@ import xmpp
from config import config
from logging import logger
from handler import Handler
-from common import exception_handler
import threading
class Connection(threading.Thread):
@@ -57,7 +56,6 @@ class Connection(threading.Thread):
run in a thread
connect to server
"""
- sys.excepthook = exception_handler
if not self.connect_to_server(self.server, self.port):
self.handler.emit('error', msg='Could not connect to server')
sys.exit(-1)