This commit is contained in:
ThomasV 2011-11-23 14:46:16 +03:00
parent c097c64d60
commit f847943ad7
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ def irc_thread():
try:
s = socket.socket()
s.connect(('irc.freenode.net', 6667))
s.send('USER '+HOST+' '+NICK+' bla :'+NICK+'\n')
s.send('USER '+config.get('server','host')+' '+NICK+' bla :'+NICK+'\n')
s.send('NICK '+NICK+'\n')
s.send('JOIN #electrum\n')
t = 0