diff options
author | makefu <root@pigstarter.de> | 2013-12-18 23:08:07 +0100 |
---|---|---|
committer | makefu <root@pigstarter.de> | 2013-12-18 23:08:07 +0100 |
commit | 0094250e65132614f3fbd9554d58c2f6220021b9 (patch) | |
tree | 14d065cd26ef183eaf09656a9c1093643c5813c7 /Reaktor/config.py | |
parent | 82deb81c8a147cfd5cd7e22e7f69b1a81e78c896 (diff) |
Reaktor: irc_commands -> commands
Diffstat (limited to 'Reaktor/config.py')
-rw-r--r-- | Reaktor/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Reaktor/config.py b/Reaktor/config.py index ed8c5efb..ce86faa9 100644 --- a/Reaktor/config.py +++ b/Reaktor/config.py @@ -2,7 +2,7 @@ debug = True # CAVEAT name should not contains regex magic -name = 'kwasybot' +name = 'crabmanner' irc_alarm_timeout = 300 irc_hammer_interval = 10 @@ -20,7 +20,7 @@ def default_command(cmd): 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*$', 'argv': [ 'commands/' + cmd ] } -irc_commands = [ +commands = [ default_command('caps'), default_command('hello'), default_command('reload'), |