From af1eba26c3a22b85bfe22ef14337652d92008d89 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 25 Aug 2011 11:06:53 -0700 Subject: [PATCH] ovs.db.idl: Fix call to ovs.db.parser.Parser constructor. This bug was introduced by commit 4c0f62718f "ovs.db.idl: Improve error reporting for bad s." Found by pychecker. Bug #7006. --- python/ovs/db/idl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ovs/db/idl.py b/python/ovs/db/idl.py index dc5f89e69..8f3c8107c 100644 --- a/python/ovs/db/idl.py +++ b/python/ovs/db/idl.py @@ -207,7 +207,7 @@ class Idl: 'is not an object' % (table_name, uuid_string)) - parser = ovs.db.parser.Parser(json, "row-update") + parser = ovs.db.parser.Parser(row_update, "row-update") old = parser.get_optional("old", [dict]) new = parser.get_optional("new", [dict]) parser.finish() -- 2.43.0