diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-05-26 02:21:03 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-05-26 02:21:03 +0100 |
commit | f4099c69292d3bff272cc1c8c3275b368ae1801b (patch) | |
tree | 2058a7503847dbb3085f22a27935d7e7e0034e22 /settings.py | |
parent | 6ae5c0d912dfa9cfbf7dea8af2440b6bc8872bdd (diff) | |
download | troggle-f4099c69292d3bff272cc1c8c3275b368ae1801b.tar.gz troggle-f4099c69292d3bff272cc1c8c3275b368ae1801b.tar.bz2 troggle-f4099c69292d3bff272cc1c8c3275b368ae1801b.zip |
fix py3 bug and make settings import clearer
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/settings.py b/settings.py index 58b930d..48e1d20 100644 --- a/settings.py +++ b/settings.py @@ -4,6 +4,7 @@ import urllib.parse import django +print("** importing settings.py") from localsettings import * #inital localsettings call so that urljoins work @@ -14,8 +15,6 @@ from localsettings import * #Local application/library specific imports. #You should put a blank line between each group of imports. -print("** importing settings.py") -print("--**-- REPOS_ROOT_PATH: ", REPOS_ROOT_PATH) # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(__file__)) |