Commit 0953ac13 authored by Jim Fulton's avatar Jim Fulton

Added missing arguments to commit and abort.

parent 685739e7
......@@ -94,11 +94,11 @@ class TransactionManager(object):
def unregisterSynch(self, synch):
self._synchs.remove(synch)
def commit(self):
self.get().commit()
def commit(self, sub=False):
self.get().commit(sub)
def abort(self):
self.get().abort()
def abort(self, sub=False):
self.get().abort(sub)
class ThreadTransactionManager(TransactionManager):
"""Thread-aware transaction manager.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment