summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils
diff options
context:
space:
mode:
authorHanoh Haim <hhaim@cisco.com>2016-03-29 14:31:49 +0300
committerHanoh Haim <hhaim@cisco.com>2016-03-29 14:31:49 +0300
commitdfbd4594242827d372c27a08599ed1227ae763a1 (patch)
treec1aa6c2f7dc866069f65cdb76454ae53cc5857ea /scripts/automation/trex_control_plane/stl/trex_stl_lib/utils
parent435255fc66c8d046323e26cc42253707434f14d3 (diff)
parent78ec5b861ef1305e0e7d9ef25c8929027b1a3221 (diff)
merge
Diffstat (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib/utils')
-rw-r--r--scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/text_tables.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/text_tables.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/text_tables.py
index 75adf9e3..4b7e9b3e 100644
--- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/text_tables.py
+++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/text_tables.py
@@ -25,10 +25,7 @@ def print_table_with_header(texttable_obj, header="", untouched_header=""):
header = header.replace("_", " ").title() + untouched_header
print(format_text(header, 'cyan', 'underline') + "\n")
- if sys.version_info < (3,0):
- print((texttable_obj.draw().encode('utf-8') + "\n"))
- else:
- print((texttable_obj.draw() + "\n"))
+ print((texttable_obj.draw() + "\n"))
if __name__ == "__main__":
pass