X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_interface.py;h=0f798cb63e6bf57f7b5b00789cb89273eb6cf96b;hb=00671cf9cfbcd9ed25d79712bf01d29cb8787bf2;hp=1fe6652cfc763e377a72acfe8b4c11cd7dcc82b3;hpb=61e63bf4e14eddebdd99814cf2633c2e638cd21c;p=vpp.git diff --git a/test/vpp_interface.py b/test/vpp_interface.py index 1fe6652cfc7..0f798cb63e6 100644 --- a/test/vpp_interface.py +++ b/test/vpp_interface.py @@ -1,5 +1,7 @@ -from abc import abstractmethod, ABCMeta import socket +from abc import abstractmethod, ABCMeta + +import six from util import Host, mk_ll_addr, mactobinary @@ -238,7 +240,7 @@ class VppInterface(object): raise Exception( "Could not find interface with sw_if_index %d " "in interface dump %s" % - (self.sw_if_index, repr(r))) + (self.sw_if_index, six.reprlib(r))) self._local_ip6_ll = mk_ll_addr(self.local_mac) self._local_ip6n_ll = socket.inet_pton(socket.AF_INET6, self.local_ip6_ll)