From 284e77bfe5d4a68f021a311041cc4576b7be912a Mon Sep 17 00:00:00 2001 From: lassulus Date: Thu, 28 Jun 2018 19:05:27 +0200 Subject: Make Flake (somewhat) happy --- reaktor/commands/identify | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) (limited to 'reaktor/commands/identify') 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") -- cgit v1.2.3