diff options
-rw-r--r-- | yardstick/network_services/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/network_services/utils.py b/yardstick/network_services/utils.py index 80e0a631c..b75091326 100644 --- a/yardstick/network_services/utils.py +++ b/yardstick/network_services/utils.py @@ -53,7 +53,7 @@ def provision_tool(connection, tool_path): bin_path = get_nsb_option("bin_path") exit_status, stdout = connection.execute("which %s" % tool_path)[:2] if exit_status == 0: - return encodeutils.safe_encode(stdout, incoming='utf-8').rstrip() + return encodeutils.safe_decode(stdout, incoming='utf-8').rstrip() logging.warning("%s not found on %s, will try to copy from localhost", tool_path, connection.host) |