aboutsummaryrefslogtreecommitdiffstats
path: root/reaktor/commands/identify
diff options
context:
space:
mode:
Diffstat (limited to 'reaktor/commands/identify')
-rwxr-xr-xreaktor/commands/identify27
1 files changed, 15 insertions, 12 deletions
diff --git a/reaktor/commands/identify b/reaktor/commands/identify
index c2fb2c5..9cb5726 100755
--- a/reaktor/commands/identify
+++ b/reaktor/commands/identify
@@ -1,22 +1,25 @@
#!/usr/bin/env python
import imp
-import os,sys
+import os
+import sys
+
def load_config(filename):
- dirname = os.path.dirname(filename)
- modname, ext = os.path.splitext(os.path.basename(filename))
- file, pathname, description = imp.find_module(modname, [ dirname ])
- return imp.load_module(modname, file, pathname, description)
+ dirname = os.path.dirname(filename)
+ modname, ext = os.path.splitext(os.path.basename(filename))
+ file, pathname, description = imp.find_module(modname, [dirname])
+ return imp.load_module(modname, file, pathname, description)
+
config = load_config(os.environ['config_filename'])
with open(config.admin_file) as f:
- for line in f:
- nick,secret = line.split()
- if sys.argv[1] == secret:
- print("identified you as %s!"%nick)
- with open(config.auth_file,'a+') as g:
- g.write(os.environ['_prefix'] +"\n")
- sys.exit(0)
+ for line in f:
+ nick, secret = line.split()
+ if sys.argv[1] == secret:
+ print("identified you as %s!" % nick)
+ with open(config.auth_file, 'a+') as g:
+ g.write(os.environ['_prefix'] + "\n")
+ sys.exit(0)
print("unable to identify you, sorry")