diff options
Diffstat (limited to 'back/config.py')
-rw-r--r-- | back/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/back/config.py b/back/config.py index 9c5b6fd..367e24f 100644 --- a/back/config.py +++ b/back/config.py @@ -4,11 +4,11 @@ import sys modpath = __file__ # Turn pyc files into py files if we can -if modpath.endswith('.pyc') and os.path.exists(modpath[:-1]): +if modpath.endswith(".pyc") and os.path.exists(modpath[:-1]): modpath = modpath[:-1] # Sort out symlinks APP_DIR = os.path.realpath(os.path.dirname(modpath)) -REDIS_HOST = 'localhost' +REDIS_HOST = "localhost" debug = True |