diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-05 13:06:37 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-05 13:06:37 -0400 |
commit | 2b5be47fce76e58955d9505e43dde222c7f6ad02 (patch) | |
tree | af549687950cdffd6c2e6e5fe86f6056078ad5fe /steuermann/config.py | |
parent | d7fed0bbe0d508f8a4c8ef8aa43e35df930a6acc (diff) | |
download | steuermann-2b5be47fce76e58955d9505e43dde222c7f6ad02.tar.gz |
Move auth_users into configuration
Diffstat (limited to 'steuermann/config.py')
-rw-r--r-- | steuermann/config.py | 6 |
1 files changed, 6 insertions, 0 deletions
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 |