Commit 409e786b authored by Vincent Pelletier's avatar Vincent Pelletier

Don't transmit "packed" dict entry to caller.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1945 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 3dc04ecf
......@@ -889,6 +889,7 @@ class Application(object):
break
if filter is None or filter(self.local_var.txn_info):
self.local_var.txn_info.pop('packed')
if not with_oids:
self.local_var.txn_info.pop("oids")
append(self.local_var.txn_info)
......@@ -973,6 +974,7 @@ class Application(object):
# create history dict
self.local_var.txn_info.pop('id')
self.local_var.txn_info.pop('oids')
self.local_var.txn_info.pop('packed')
self.local_var.txn_info['tid'] = serial
self.local_var.txn_info['version'] = ''
self.local_var.txn_info['size'] = size
......
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