Fixed config calls

This commit is contained in:
Mike Young
2019-12-31 22:00:17 -05:00
parent da133c4197
commit e42fc82563

View File

@@ -107,8 +107,8 @@ DATABASES = {
DATABASES = { DATABASES = {
"default": { "default": {
"ENGINE": "django.db.backends.postgresql", "ENGINE": "django.db.backends.postgresql",
"NAME": CONFIG.DATABASE, "NAME": CONFIG.database,
"PASSWORD": CONFIG.PASSWORD, "PASSWORD": CONFIG.password,
} }
} }