summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@googlemail.com>2014-01-05 04:11:23 +0100
committerlassulus <lassulus@googlemail.com>2014-01-05 04:11:23 +0100
commit903cff098911de49e1e529b33a75021ccaf55fcf (patch)
tree3f33354bd49c289975511e2837bed2440ae935a8
parent393abf180b6bfcf89ab8544ec691a97d840f0963 (diff)
ircbot: longer wait after send
-rwxr-xr-xircbot/contoller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ircbot/contoller.py b/ircbot/contoller.py
index 9466343d..a6c005c3 100755
--- a/ircbot/contoller.py
+++ b/ircbot/contoller.py
@@ -38,7 +38,7 @@ class NewsBot(irc.bot.SingleServerIRCBot):
def send(self, string):
for line in string.split('\n'):
self.connection.privmsg(self.chan, line)
-
+ sleep(0.5)
def on_pubmsg(self, connection, event):
self.on_privmsg(connection, event)