From af54b1e4cb0222285bb8a79e51310e69ad1bdfa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Wisniewski?= <gregory@nexedi.com> Date: Fri, 19 Feb 2010 08:45:35 +0000 Subject: [PATCH] History's version field must be an empty string, not None. See HistoryTests.checkSimpleHistory. git-svn-id: https://svn.erp5.org/repos/neo/trunk@1792 71dcc9de-d417-0410-9af5-da40c76e7ee4 --- neo/client/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/client/app.py b/neo/client/app.py index 45272ffa..f3218204 100644 --- a/neo/client/app.py +++ b/neo/client/app.py @@ -938,7 +938,7 @@ class Application(object): self.local_var.txn_info.pop('id') self.local_var.txn_info.pop('oids') self.local_var.txn_info['tid'] = serial - self.local_var.txn_info['version'] = None + self.local_var.txn_info['version'] = '' self.local_var.txn_info['size'] = size if filter is None or filter(self.local_var.txn_info): history_list.append(self.local_var.txn_info) -- 2.30.9