fix synapse_port script

This commit is contained in:
Matthew 2017-06-16 20:24:14 +01:00
parent dfeca6cf40
commit 776a070421

View File

@ -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: