Browse Source

hopefully make fbye/fdie more smooth

master
jcao219 13 years ago
parent
commit
92b1a48845
  1. 6
      oyoyo/client.py

6
oyoyo/client.py

@ -223,7 +223,6 @@ class IRCClient(object): @@ -223,7 +223,6 @@ class IRCClient(object):
except Exception as e:
traceback.print_exc()
raise e # ?
yield True
finally:
if self.socket:
@ -255,5 +254,8 @@ class IRCClient(object): @@ -255,5 +254,8 @@ class IRCClient(object):
def mainLoop(self):
conn = self.connect()
while True:
next(conn)
try:
next(conn)
except:
return

Loading…
Cancel
Save