summaryrefslogtreecommitdiff
path: root/Scipy2018/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'Scipy2018/settings.py')
-rw-r--r--Scipy2018/settings.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Scipy2018/settings.py b/Scipy2018/settings.py
index 5fdadf0..0aea718 100644
--- a/Scipy2018/settings.py
+++ b/Scipy2018/settings.py
@@ -58,7 +58,7 @@ ROOT_URL = ROOT_URL_VAL
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
- 'DIRS': [PROJECT_DIR + '/static/website/templates',],
+ 'DIRS': [PROJECT_DIR + '/static/website/templates', ],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
@@ -81,7 +81,8 @@ WSGI_APPLICATION = 'Scipy2018.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
- 'NAME': DB_NAME_DEFAULT, # Or path to database file if using sqlite3.
+ # Or path to database file if using sqlite3.
+ 'NAME': DB_NAME_DEFAULT,
'USER': DB_USER_DEFAULT,
'PASSWORD': DB_PASS_DEFAULT,
'HOST': DB_HOST_DEFAULT,