diff options
author | 2016-11-30 14:57:06 +0200 | |
---|---|---|
committer | 2016-11-30 14:57:06 +0200 | |
commit | 5b4fcd558793cf7222cc260d8d5aead03cf1cb86 (patch) | |
tree | b09b1c6075bd24789a974571af535372a85988dc | |
parent | 051a334b6f57280faa9dd90eeab922fb51f3c89e (diff) |
API change get_info -> get_formatted_info
Signed-off-by: imarom <imarom@cisco.com>
-rwxr-xr-x | scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py index c72244a6..0425c207 100755 --- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py +++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py @@ -1650,7 +1650,7 @@ class STLClient(object): ports = ports if ports is not None else self.get_all_ports() ports = self._validate_port_list(ports) - return [self.ports[port_id].get_info() for port_id in ports] + return [self.ports[port_id].get_formatted_info() for port_id in ports] ############################ Commands ############################# |