Clear user lists when (re)connecting

Also remove a debug log parsing user lists
This commit is contained in:
moneromooo 2014-12-25 20:22:29 +00:00
parent e092188f80
commit 15da80978d
1 changed files with 1 additions and 1 deletions

View File

@ -774,6 +774,7 @@ while True:
last_ping_time = time.time()
if data.find ( 'Welcome to the freenode Internet Relay Chat Network' ) != -1:
userstable = dict()
SendTo("nickserv", "IDENTIFY %s" % GetPassword())
Join(irc_homechan)
#ScanWho(None,[irc_homechan])
@ -866,7 +867,6 @@ while True:
elif action == '353':
try:
log_log("parts: %s" % str(parts))
who_chan = parts[4]
who_chan_users = cparts[2].split(" ")
for who_chan_user in who_chan_users: