2
0
mirror of https://github.com/openvswitch/ovs synced 2025-09-01 23:05:29 +00:00

ovs.db.parser: Simplify code.

Suggested-by: Reid Price <reid@nicira.com>
This commit is contained in:
Ben Pfaff
2011-08-23 09:36:56 -07:00
parent bf6ec045b7
commit c29e06be0e

View File

@@ -53,15 +53,13 @@ class Parser(object):
if missing: if missing:
name = missing.pop() name = missing.pop()
if len(missing) > 1: if len(missing) > 1:
self.__raise_error("Member '%s' and %d other members " present = "and %d other members are" % len(missing)
"are present but not allowed here"
% (name, len(missing)))
elif missing: elif missing:
self.__raise_error("Member '%s' and 1 other member " present = "and 1 other member are"
"are present but not allowed here" % name)
else: else:
self.__raise_error("Member '%s' is present but not " present = "is"
"allowed here" % name) self.__raise_error("Member '%s' %s present but not allowed here" %
(name, present))
def float_to_int(x): def float_to_int(x):
# XXX still needed? # XXX still needed?