From d2a4ecf9a5214b784720dd6a7b2ad79c298a05b9 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Wed, 10 Feb 2010 16:47:43 +0000 Subject: little cleanup --- src/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/connection.py') diff --git a/src/connection.py b/src/connection.py index 68030e7c..c651032e 100644 --- a/src/connection.py +++ b/src/connection.py @@ -23,7 +23,6 @@ import xmpp from config import config from logging import logger from threading import Thread -from multiuserchat import MultiUserChat from handler import Handler class Connection(Thread): @@ -100,7 +99,8 @@ class Connection(Thread): def process(self, timeout=10): if self.online: - try:self.client.Process(timeout) + try: + self.client.Process(timeout) except: pass # FIXME else: -- cgit v1.2.3