0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-19 19:18:19 +02:00

Fix syntax

This commit is contained in:
Mark Haines 2015-01-19 15:30:48 +00:00
parent 3e85e52b3f
commit 00e9c08609

View file

@ -241,7 +241,8 @@ def setup():
except UpgradeDatabaseException:
sys.stderr.write(
"\nFailed to upgrade database.\n"
"Have you checked for version specific instructions in UPGRADES.rst?\n"
"Have you checked for version specific instructions in"
" UPGRADES.rst?\n"
)
sys.exit(1)
@ -249,7 +250,7 @@ def setup():
db_pool = hs.get_db_pool()
if db_name == ":memory:"
if db_name == ":memory:":
# Memory databases will need to be setup each time they are opened.
reactor.callWhenRunning(
hs.get_db_pool().runWithConnection, prepare_database