Browse Source

call sys.exit()

master
jcao219 13 years ago
parent
commit
8b138ff808
  1. 7
      oyoyo/client.py

7
oyoyo/client.py

@ -19,6 +19,7 @@ import socket @@ -19,6 +19,7 @@ import socket
import time
import threading
import traceback
import sys
from oyoyo.parse import parse_raw_irc_command
@ -228,8 +229,7 @@ class IRCClient(object): @@ -228,8 +229,7 @@ class IRCClient(object):
if self.socket:
logging.info('closing socket')
self.socket.close()
import os
os._exit(0)
yield False
def msg(self, user, msg):
for line in msg.split('\n'):
maxchars = 494 - len(self.nickname+self.ident+self.hostmask+user)
@ -270,5 +270,6 @@ class IRCClient(object): @@ -270,5 +270,6 @@ class IRCClient(object):
conn = self.connect()
while True:
if not next(conn):
break
print("Calling sys.exit()...")
sys.exit()

Loading…
Cancel
Save