Commit fb623856 authored by Jim Fulton's avatar Jim Fulton

Update for transaction 2.0.3 (extended_info -> extension)

parent f0f00357
......@@ -141,7 +141,7 @@ setup(name="ZODB",
'persistent >= 4.2.0',
'BTrees >= 4.2.0',
'ZConfig',
'transaction >= 2.0.0',
'transaction >= 2.0.3',
'six',
'zc.lockfile',
'zope.interface',
......
......@@ -462,7 +462,7 @@ class Connection(ExportImport, object):
meta_data = TransactionMetaData(
transaction.user,
transaction.description,
transaction.extended_info)
transaction.extension)
transaction.set_data(self, meta_data)
# _creating is a list of oids of new objects, which is used to
......
......@@ -1040,7 +1040,7 @@ class TransactionalUndo(object):
tdata = TransactionMetaData(
transaction.user,
transaction.description,
transaction.extended_info)
transaction.extension)
transaction.set_data(self, tdata)
self._storage.tpc_begin(tdata)
......
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