diff options
author | lassulus <lassulus@googlemail.com> | 2014-01-05 04:11:23 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2014-01-05 04:11:23 +0100 |
commit | 903cff098911de49e1e529b33a75021ccaf55fcf (patch) | |
tree | 3f33354bd49c289975511e2837bed2440ae935a8 /ircbot | |
parent | 393abf180b6bfcf89ab8544ec691a97d840f0963 (diff) |
ircbot: longer wait after send
Diffstat (limited to 'ircbot')
-rwxr-xr-x | ircbot/contoller.py | 2 |
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) |