diff options
author | tv <tv@nomic.retiolum> | 2013-12-18 18:24:48 +0100 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2013-12-18 18:28:15 +0100 |
commit | 16cd627dcb1a580d6095a2962b48ce7731d8f716 (patch) | |
tree | 7e930b255e26870b150bbb96890e4839a2885f23 /IRC/asybot.py | |
parent | a7c04c54b3836d6d16378e9ec26ac8a52f217fdc (diff) | |
parent | a6e8694560070f1666909cd054e0c3a775f121c0 (diff) |
Merge branch 'master' of https://github.com/krebscode/painload
Diffstat (limited to 'IRC/asybot.py')
-rwxr-xr-x | IRC/asybot.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IRC/asybot.py b/IRC/asybot.py index 6d19fd0..89967c3 100755 --- a/IRC/asybot.py +++ b/IRC/asybot.py @@ -54,7 +54,7 @@ class asybot(asychat): # passed without a message. Any incoming message will reset alarm. self.alarm_timeout = getconf('irc_alarm_timeout') self.hammer_interval = getconf('irc_hammer_interval') - self.kill_timeout = 360 + self.kill_timeout = getconf('irc_kill_timeout') signal(SIGALRM, lambda signum, frame: self.alarm_handler()) self.reset_alarm() @@ -129,6 +129,7 @@ class asybot(asychat): y = match(command['pattern'], rest) if y: self.execute_command(command, y, PRIVMSG, ME) + break def execute_command(self, command, match, PRIVMSG, ME): from os.path import realpath, dirname, join |