From: Ben Pfaff <[email protected]>
---
I've folded this patch in after the style cleanup patch.
---
python/ovs/json.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/python/ovs/json.py b/python/ovs/json.py
index f4caf41..417d231 100644
--- a/python/ovs/json.py
+++ b/python/ovs/json.py
@@ -267,7 +267,7 @@ class Parser(object):
self.__parser_input(0)
return
elif significand <= 2 ** 63:
- while pow10 > 0 and significand <= 2 * 63:
+ while pow10 > 0 and significand <= 2 ** 63:
significand *= 10
pow10 -= 1
while pow10 < 0 and significand % 10 == 0:
--
1.7.6.1
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev