Fix presumed typo
I assume a trailing slash should be removed
This commit is contained in:
parent
a6f02dfd63
commit
cfe419e5b5
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue