[ovs-dev] [PATCH] ovs-tcpundump: fix a conversion issue

Aaron Conole aconole at redhat.com
Fri Jan 12 20:40:21 UTC 2018


When I tried using ovs-tcpundump, I got the following error message:
Traceback (most recent call last):
  File ./ovs-tcpundump, line 64, in <module>
    if m is None or int(m.group(1)) == 0:
ValueError: invalid literal for int() with base 10: '00a0'

Signed-off-by: Aaron Conole <aconole at redhat.com>
---
 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 57300cdc1..c99015b5b 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 = ''
-- 
2.14.3



More information about the dev mailing list