summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/common/trex_types.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/automation/trex_control_plane/common/trex_types.py')
-rw-r--r--scripts/automation/trex_control_plane/common/trex_types.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/common/trex_types.py b/scripts/automation/trex_control_plane/common/trex_types.py
index aada5bfc..a7ddacea 100644
--- a/scripts/automation/trex_control_plane/common/trex_types.py
+++ b/scripts/automation/trex_control_plane/common/trex_types.py
@@ -46,7 +46,11 @@ class RC():
return (e if len(e) != 1 else e[0])
def __str__ (self):
- return str(self.data()) if self else str(self.err())
+ s = ""
+ for x in self.rc_list:
+ if x.data:
+ s += format_text("\n{0}".format(x.data), 'bold')
+ return s
def prn_func (self, msg, newline = True):
if newline: