1
0
This commit is contained in:
ThomasV
2011-11-21 12:42:40 +03:00
parent 4e2200dbdc
commit 9f797d4c5d
2 changed files with 6 additions and 3 deletions

View File

@@ -447,7 +447,10 @@ def irc_thread():
s.send('PONG '+line[1]+'\n')
elif '353' in line: # answer to /names
k = line.index('353')
k2 = line.index('366')
try:
k2 = line.index('366')
except:
continue
for item in line[k+1:k2]:
if item[0:2] == 'E_':
s.send('USERHOST %s\n'%item)