diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-03-24 15:46:35 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-03-24 15:46:35 +0000 |
commit | 9a914873750cee6fb2cde17a45fcd7f7a487a796 (patch) | |
tree | 3c93df2cfdcd52b7501761be8c7273f749e052a1 /settings.py | |
parent | 7f37327bcdb3d6588a5ca189f7f0ecfba3f95ffa (diff) | |
download | troggle-9a914873750cee6fb2cde17a45fcd7f7a487a796.tar.gz troggle-9a914873750cee6fb2cde17a45fcd7f7a487a796.tar.bz2 troggle-9a914873750cee6fb2cde17a45fcd7f7a487a796.zip |
pathlib for path management & cavelist fixes
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.py b/settings.py index df5268e..024be70 100644 --- a/settings.py +++ b/settings.py @@ -27,7 +27,7 @@ print("* importing troggle/settings.py") # read https://docs.djangoproject.com/en/3.0/topics/settings/ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) -BASE_DIR = os.path.dirname(os.path.dirname(__file__)) +#BASE_DIR = os.path.dirname(os.path.dirname(__file__)) # Django settings for troggle project. |