X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_object.py;h=1b0fadae569c9fda56a5af5cc4dec9f7cf38bde5;hb=fc7344f;hp=8fe549e74ff3b63e3dbf3c0ff97d8eb95801a94a;hpb=00671cf9cfbcd9ed25d79712bf01d29cb8787bf2;p=vpp.git diff --git a/test/vpp_object.py b/test/vpp_object.py index 8fe549e74ff..1b0fadae569 100644 --- a/test/vpp_object.py +++ b/test/vpp_object.py @@ -2,7 +2,7 @@ from abc import ABCMeta, abstractmethod -import six +from six import moves class VppObject(object): @@ -83,6 +83,6 @@ class VppObjectRegistry(object): if failed: logger.error("REG: Couldn't remove configuration for object(s):") for obj in failed: - logger.error(six.reprlib(obj)) + logger.error(moves.reprlib.repr(obj)) raise Exception("Couldn't remove configuration for object(s): %s" % (", ".join(str(x) for x in failed)))