diff options
Diffstat (limited to 'IRC/reaktor.py')
-rwxr-xr-x | IRC/reaktor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IRC/reaktor.py b/IRC/reaktor.py index b53ef65..54091c5 100755 --- a/IRC/reaktor.py +++ b/IRC/reaktor.py @@ -36,7 +36,7 @@ class Reaktor(asybot): return False def on_join(self, prefix, command, params, rest): - for command in getconf('on_join'): + for command in getconf('on_join', []): self.execute_command(command, None, prefix, params) def on_privmsg(self, prefix, command, params, rest): |