diff options
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') |