increase delay between irc messages sent, to avoid flood
[electrum-server.git] / backends / irc / __init__.py
index 2e3d563..5511d8f 100644 (file)
@@ -78,7 +78,7 @@ class IrcThread(threading.Thread):
             try:
                 s = socket.socket()
                 s.connect(('irc.freenode.net', 6667))
-                s.settimeout(0.1)
+                s.settimeout(0.3)
             except:
                 s.close()
                 print_log("IRC: reconnect in 10 s")