diff options
| author | tv <tv@nomic.retiolum> | 2014-04-25 13:43:08 +0200 | 
|---|---|---|
| committer | tv <tv@nomic.retiolum> | 2014-04-25 13:43:08 +0200 | 
| commit | 9e5e76fd2532a47b0cc47f4d01266b7c35299470 (patch) | |
| tree | 8934c8a60609ba71e9708ba70eea22bd2ec55f10 /Reaktor | |
| parent | 14751fbcb177f70cf8989f4d27c566b2576ebb70 (diff) | |
reaktor config: identify needs config_filename
Diffstat (limited to 'Reaktor')
| -rw-r--r-- | Reaktor/config.py | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/Reaktor/config.py b/Reaktor/config.py index 5ea991b0..eba1f093 100644 --- a/Reaktor/config.py +++ b/Reaktor/config.py @@ -56,7 +56,11 @@ public_commands = [    # identify via direct connect    { 'capname': 'identify',      'pattern': '^identify' + '\\s*(?:\\s+(?P<args>.*))?$', -    'argv' : [ 'commands/identify' ]} +    'argv' : [ 'commands/identify' ], +    'env': { +      'config_filename': config_filename +    } +  }  ]  commands = [    default_command('reload')  | 
