diff options
author | Prashant S | 2018-08-23 17:26:48 +0530 |
---|---|---|
committer | GitHub | 2018-08-23 17:26:48 +0530 |
commit | 83e14c33bae4ef1ad5e8546408caf7232e962c75 (patch) | |
tree | 840a015b9bb62c4b7715212453f1235411f5efb1 /Scipy2018/settings.py | |
parent | b0b42e5553658fbd3aee833b555435a4401d208c (diff) | |
parent | 07c0150abaa36086cab2a0047125d7e0219f15b0 (diff) | |
download | SciPy2018-83e14c33bae4ef1ad5e8546408caf7232e962c75.tar.gz SciPy2018-83e14c33bae4ef1ad5e8546408caf7232e962c75.tar.bz2 SciPy2018-83e14c33bae4ef1ad5e8546408caf7232e962c75.zip |
Merge pull request #9 from prashantsinalkar/development
updated code according to pep8
Diffstat (limited to 'Scipy2018/settings.py')
-rw-r--r-- | Scipy2018/settings.py | 5 |
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, |