diff options
author | Matthew <matthew@matrix.org> | 2017-06-16 20:24:14 +0100 |
---|---|---|
committer | Matthew <matthew@matrix.org> | 2017-06-16 20:24:14 +0100 |
commit | 776a0704212d9f709093af70c79e7c04ace9cdc1 (patch) | |
tree | ce74643a95d1afd445ba71559a0e57605b6e0460 /scripts | |
parent | Merge pull request #2286 from matrix-org/erikj/split_out_user_dir (diff) | |
download | synapse-776a0704212d9f709093af70c79e7c04ace9cdc1.tar.xz |
fix synapse_port script
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/synapse_port_db | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db index 2e5d666707..6782b663e6 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -121,7 +121,7 @@ class Store(object): try: txn = conn.cursor() return func( - LoggingTransaction(txn, desc, self.database_engine, []), + LoggingTransaction(txn, desc, self.database_engine, [], []), *args, **kwargs ) except self.database_engine.module.DatabaseError as e: |