diff options
Diffstat (limited to 'Reaktor/config.py')
-rw-r--r-- | Reaktor/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Reaktor/config.py b/Reaktor/config.py index 0ae76811..2dd6ac2f 100644 --- a/Reaktor/config.py +++ b/Reaktor/config.py @@ -17,7 +17,7 @@ irc_channels = [ def default_command(cmd): return { 'capname': cmd, - 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*$', + 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P<args>.*))?$', 'argv': [ 'commands/' + cmd ] } commands = [ |