0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-30 05:29:00 +02:00

Use absolute path when loading delta sql files

This commit is contained in:
Erik Johnston 2015-02-17 17:22:24 +00:00
parent 1a989c436c
commit 2c29ed3e84

View file

@ -76,6 +76,8 @@ SCHEMAS = [
# database schema files, so the users will be informed on server restarts. # database schema files, so the users will be informed on server restarts.
SCHEMA_VERSION = 13 SCHEMA_VERSION = 13
dir_path = os.path.abspath(os.path.dirname(__file__))
class _RollbackButIsFineException(Exception): class _RollbackButIsFineException(Exception):
""" This exception is used to rollback a transaction without implying """ This exception is used to rollback a transaction without implying
@ -583,7 +585,6 @@ def schema_path(schema):
A filesystem path pointing at a ".sql" file. A filesystem path pointing at a ".sql" file.
""" """
dir_path = os.path.dirname(__file__)
schemaPath = os.path.join(dir_path, "schema", schema + ".sql") schemaPath = os.path.join(dir_path, "schema", schema + ".sql")
return schemaPath return schemaPath