From eb94e12f86509c686340c6a689691dd9bc863f76 Mon Sep 17 00:00:00 2001 From: Taizo 'Tsa6' Simpson Date: Thu, 21 Sep 2017 17:27:00 -0400 Subject: [PATCH] Fix discrepency between default values in settings.py and options.ini --- EpisodesCommunity/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EpisodesCommunity/settings.py b/EpisodesCommunity/settings.py index ec8a8cf..548e7ef 100644 --- a/EpisodesCommunity/settings.py +++ b/EpisodesCommunity/settings.py @@ -87,7 +87,7 @@ WSGI_APPLICATION = 'EpisodesCommunity.wsgi.application' # https://docs.djangoproject.com/en/1.11/ref/settings/#databases DATABASES = { - 'default': dj_database_url.parse(options.get("database", 'sqlite:///database.db')) + 'default': dj_database_url.parse(options.get("database", 'sqlite:///database.sqlite3')) }