X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_interface.py;h=8639f8745c55f1e027313497d17322a57e14843b;hb=refs%2Fchanges%2F95%2F16195%2F3;hp=0f798cb63e6bf57f7b5b00789cb89273eb6cf96b;hpb=f970d2f8c6a291cdd0bc559afc966b5d32d85f2c;p=vpp.git diff --git a/test/vpp_interface.py b/test/vpp_interface.py index 0f798cb63e6..8639f8745c5 100644 --- a/test/vpp_interface.py +++ b/test/vpp_interface.py @@ -1,7 +1,7 @@ import socket from abc import abstractmethod, ABCMeta -import six +from six import moves from util import Host, mk_ll_addr, mactobinary @@ -240,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, six.reprlib(r))) + (self.sw_if_index, moves.reprlib.repr(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)