diff options
Diffstat (limited to 'scripts/automation/trex_control_plane/console')
-rw-r--r-- | scripts/automation/trex_control_plane/console/trex_tui.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/automation/trex_control_plane/console/trex_tui.py b/scripts/automation/trex_control_plane/console/trex_tui.py index c8cdaa16..6b0aa50a 100644 --- a/scripts/automation/trex_control_plane/console/trex_tui.py +++ b/scripts/automation/trex_control_plane/console/trex_tui.py @@ -392,8 +392,9 @@ class TrexTUI(): def clear_screen (self): - os.system('clear') - #sys.stderr.write("\x1b[2J\x1b[H") + #os.system('clear') + # maybe this is faster ? + sys.stderr.write("\x1b[2J\x1b[H") |