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