Fixed bad indentation

This commit is contained in:
Daniel Quinn 2017-01-01 18:40:23 +00:00
parent 30be13ae33
commit db7810a9d2

View File

@ -95,12 +95,12 @@ DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(
os.getenv(
"PAPERLESS_DBDIR",
os.path.join(BASE_DIR, "..", "data")
),
"db.sqlite3"
)
os.getenv(
"PAPERLESS_DBDIR",
os.path.join(BASE_DIR, "..", "data")
),
"db.sqlite3"
)
}
}
@ -151,9 +151,7 @@ USE_TZ = True
STATIC_ROOT = os.path.join(BASE_DIR, "..", "static")
MEDIA_ROOT = os.getenv(
"PAPERLESS_MEDIADIR",
os.path.join(BASE_DIR, "..", "media")
)
"PAPERLESS_MEDIADIR", os.path.join(BASE_DIR, "..", "media"))
STATIC_URL = '/static/'
MEDIA_URL = "/media/"