diff options
author | makefu <github@syntax-fehler.de> | 2014-03-25 15:35:52 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2014-03-25 15:35:52 +0100 |
commit | b8dc4ea2af56884d0908d1c9261f23c76951c567 (patch) | |
tree | 22a72f1231121dfc0cf217e5ecaf6bedcab466f4 /commands/caps | |
parent | 41170dbfd9bebfc591eb0988d6bfec62707d5982 (diff) |
add authentication to Reaktor
using /query <reaktor> identify <password>
configuration contains commands and public_commands
Diffstat (limited to 'commands/caps')
-rwxr-xr-x | commands/caps | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/caps b/commands/caps index c47319f..d024557 100755 --- a/commands/caps +++ b/commands/caps @@ -9,4 +9,5 @@ def load_config(filename): return imp.load_module(modname, file, pathname, description) config = load_config(os.environ['config_filename']) -print(' '.join(filter(None,[ x.get('capname',None) for x in config.commands]))) +print('Private: '+' '.join(filter(None,[ x.get('capname',None) for x in config.commands]))) +print('Public: '+' '.join(filter(None,[ x.get('capname',None) for x in config.public_commands]))) |