Fix presumed typo

I assume a trailing slash should be removed
This commit is contained in:
Lars Immisch 2016-01-31 17:36:53 +01:00
parent a6f02dfd63
commit cfe419e5b5
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ LOGIN_DISABLED = ALLOW_ANON
LOCKED = WIKI_LOCKED_PAGES[:] LOCKED = WIKI_LOCKED_PAGES[:]
if BASE_URL.endswith('/'): if BASE_URL.endswith('/'):
BASE_URL = BASE_URL[-1] BASE_URL = BASE_URL[:-1]
SQLALCHEMY_DATABASE_URI = DB_URI SQLALCHEMY_DATABASE_URI = DB_URI