diff options
Diffstat (limited to 'databaseReset.py')
-rw-r--r-- | databaseReset.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/databaseReset.py b/databaseReset.py index c900181..3f76f11 100644 --- a/databaseReset.py +++ b/databaseReset.py @@ -6,6 +6,7 @@ import json import resource import settings +import credentials """ Command-line utility for loading cave data files into troggle's database. The command line options select which combination of classes of data will be imported, @@ -55,7 +56,7 @@ if os.geteuid() == 0: exit() expouser=settings.EXPOUSER -expouserpass=settings.EXPOUSERPASS +expouserpass=credentials.EXPOUSERPASS expouseremail=settings.EXPOUSER_EMAIL def reinit_db(): |