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)

View file

@ -26,8 +26,8 @@ if __name__ == '__main__':
f = open("/var/www/electrum/index.html")
s = f.read()
f.close()
s = re.sub("Electrum-([\d\.]*?)\.tar\.gz", _tgz, s)
s = re.sub("Electrum-([\d\.]*?)\.zip", _zip, s)
s = re.sub("Electrum-([\d\.a-z]*?)\.tar\.gz", _tgz, s)
s = re.sub("Electrum-([\d\.a-z]*?)\.zip", _zip, s)
f = open("/var/www/electrum/index.html","w")
f.write(s)
f.close()