From 57d6a4c71bd0b4ed477ec273d4d4f84c5e4ed465 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 24 Aug 2011 11:57:14 -0700 Subject: [PATCH] ovs.db.data: Fix bugs in Atom.is_default() and Datum.is_default(). Reported-by: Reid Price --- python/ovs/db/data.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/python/ovs/db/data.py b/python/ovs/db/data.py index bfdc11cbc..ae8af2faa 100644 --- a/python/ovs/db/data.py +++ b/python/ovs/db/data.py @@ -1,4 +1,4 @@ -# Copyright (c) 2009, 2010 Nicira Networks +# Copyright (c) 2009, 2010, 2011 Nicira Networks # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -89,7 +89,7 @@ class Atom(object): return Atom(type) def is_default(self): - return self == default(self.type) + return self == self.default(self.type) @staticmethod def from_json(base, json, symtab=None): @@ -259,9 +259,8 @@ class Datum(object): values = {type.key.default(): None} return Datum(type, values) - @staticmethod def is_default(self): - return self == default(self.type) + return self == Datum.default(self.type) def check_constraints(self): """Checks that each of the atoms in 'datum' conforms to the constraints -- 2.43.0