From 446dbf045bb7ad316bc5ab8d706e6b46009de4d9 Mon Sep 17 00:00:00 2001 From: Aaron Conole Date: Fri, 12 Jan 2018 15:40:21 -0500 Subject: ovs-tcpundump: fix a conversion issue When I tried using ovs-tcpundump, I got the following error message: Traceback (most recent call last): File ./ovs-tcpundump, line 64, in if m is None or int(m.group(1)) == 0: ValueError: invalid literal for int() with base 10: '00a0' Signed-off-by: Aaron Conole Signed-off-by: Ben Pfaff --- utilities/ovs-tcpundump.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/ovs-tcpundump.in b/utilities/ovs-tcpundump.in index 0268c504a..1e16250aa 100755 --- a/utilities/ovs-tcpundump.in +++ b/utilities/ovs-tcpundump.in @@ -61,7 +61,7 @@ if __name__ == "__main__": break m = regex.match(line) - if m is None or int(m.group(1)) == 0: + if m is None or int(m.group(1), 16) == 0: if packet != '': print packet packet = '' -- cgit v1.2.1