aboutsummaryrefslogtreecommitdiffstats
path: root/commands/caps
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2014-03-25 15:35:52 +0100
committermakefu <github@syntax-fehler.de>2014-03-25 15:35:52 +0100
commitb8dc4ea2af56884d0908d1c9261f23c76951c567 (patch)
tree22a72f1231121dfc0cf217e5ecaf6bedcab466f4 /commands/caps
parent41170dbfd9bebfc591eb0988d6bfec62707d5982 (diff)
add authentication to Reaktor
using /query <reaktor> identify <password> configuration contains commands and public_commands
Diffstat (limited to 'commands/caps')
-rwxr-xr-xcommands/caps3
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])))