mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
fixed bad params
This commit is contained in:
parent
2e951d4bc0
commit
c1efb0004d
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ TEMPLATES = [
|
|||
WSGI_APPLICATION = 'dispatcharr.wsgi.application'
|
||||
ASGI_APPLICATION = 'dispatcharr.asgi.application'
|
||||
|
||||
if os.getenv('DB_ENGINE' None) == 'sqlite':
|
||||
if os.getenv('DB_ENGINE', None) == 'sqlite':
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue