tfix - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit f847943ad7d1051b7524e636f820c45c56a9e1b2 DIR parent c097c64d601a9ce059444f3ac083896843cab577 HTML Author: ThomasV <thomasv@gitorious> Date: Wed, 23 Nov 2011 14:46:16 +0300 fix Diffstat: M server/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/server/server.py b/server/server.py t@@ -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