diff options
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 |