diff options
Diffstat (limited to 'test/vpp_object.py')
-rw-r--r-- | test/vpp_object.py | 4 |
1 files changed, 2 insertions, 2 deletions
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))) |