From 07c0150abaa36086cab2a0047125d7e0219f15b0 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Thu, 23 Aug 2018 17:25:06 +0530 Subject: updated code according to pep8 --- Scipy2018/settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Scipy2018/settings.py') 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, -- cgit