From f72c6df9d2e9998ae1f3529d729ab7930b35785a Mon Sep 17 00:00:00 2001 From: imarom Date: Mon, 21 Mar 2016 14:48:00 +0200 Subject: python 3 support for package - phase 1 --- .../automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py') diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py index f91ddfab..34402993 100644 --- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py +++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_ext.py @@ -52,9 +52,9 @@ def import_module_list(modules_list): full_path = generate_module_path(p, is_python3, is_64bit, is_cel) if not os.path.exists(full_path): - print "Unable to find required module library: '{0}'".format(p) - print "Please provide the correct path using TREX_STL_EXT_PATH variable" - print "current path used: '{0}'".format(full_path) + print("Unable to find required module library: '{0}'".format(p)) + print("Please provide the correct path using TREX_STL_EXT_PATH variable") + print("current path used: '{0}'".format(full_path)) exit(0) sys.path.insert(1, full_path) -- cgit 1.2.3-korg