summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_types.py
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2016-03-13 17:37:36 +0200
committerimarom <imarom@cisco.com>2016-03-13 17:37:36 +0200
commitd935f8e440051b703175ea47077d51873f4d9504 (patch)
tree7df18e06f46b4b278a16bb94504b6c9438423d17 /scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_types.py
parent17e720ee8611d950c56e3a873f0ac9cd2b235279 (diff)
removed some prints and a fix for error handling on add_streams
Diffstat (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_types.py')
-rw-r--r--scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_types.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_types.py
index 496bea13..bd48f939 100644
--- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_types.py
+++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_types.py
@@ -5,7 +5,7 @@ from trex_stl_exceptions import *
import types
RpcCmdData = namedtuple('RpcCmdData', ['method', 'params'])
-TupleRC = namedtuple('RC', ['rc', 'data', 'is_warn'])
+TupleRC = namedtuple('RCT', ['rc', 'data', 'is_warn'])
class RpcResponseStatus(namedtuple('RpcResponseStatus', ['success', 'id', 'msg'])):
__slots__ = ()