From 2b5be47fce76e58955d9505e43dde222c7f6ad02 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 5 Jul 2016 13:06:37 -0400 Subject: Move auth_users into configuration --- steuermann/config.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'steuermann/config.py') diff --git a/steuermann/config.py b/steuermann/config.py index 5315e47..247dc9d 100644 --- a/steuermann/config.py +++ b/steuermann/config.py @@ -33,6 +33,12 @@ except ImportError: exit(1) print("Using: {0}".format(config_dir)) + +try: + auth_users = config.auth_users +except NameError: + auth_users = () + db_creds = config.db_creds -- cgit