Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Shibboleth #7

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
update settings to use absolute paths.
  • Loading branch information
justinrporter committed Jul 11, 2015
commit c96928193003e84fc058ebd8675c9e6a8766d171
2 changes: 1 addition & 1 deletion clintools/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
with open('secrets/secret_key.txt') as f:
with open(os.path.join(BASE_DIR, 'secrets/secret_key.txt')) as f:
SECRET_KEY = f.read().strip()


Expand Down