summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/client_utils/text_tables.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/automation/trex_control_plane/client_utils/text_tables.py')
-rw-r--r--scripts/automation/trex_control_plane/client_utils/text_tables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/client_utils/text_tables.py b/scripts/automation/trex_control_plane/client_utils/text_tables.py
index 2fa17f09..d8928da8 100644
--- a/scripts/automation/trex_control_plane/client_utils/text_tables.py
+++ b/scripts/automation/trex_control_plane/client_utils/text_tables.py
@@ -25,8 +25,8 @@ def generate_trex_stats_table():
def print_table_with_header(texttable_obj, header="", untouched_header=""):
header = header.replace("_", " ").title() + untouched_header
print format_text(header, 'cyan', 'underline') + "\n"
- print texttable_obj.draw() + "\n"
+ print (texttable_obj.draw() + "\n").encode('utf-8')
if __name__ == "__main__":
pass