diff options
author | imarom <imarom@cisco.com> | 2016-07-05 10:46:04 +0300 |
---|---|---|
committer | imarom <imarom@cisco.com> | 2016-07-05 10:46:04 +0300 |
commit | c5d7c2ee9859b5ba772c6a9be46ced61f2ad25c3 (patch) | |
tree | 6d9c92e73cc9c38df4b11806a9a69f73e66a7d5e /scripts/automation | |
parent | 087464fbd4011b1a357f0567e9793dde641e9120 (diff) |
profile console command was broken on Python 3
Diffstat (limited to 'scripts/automation')
-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 ae7c23f2..575d4025 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 @@ -2974,7 +2974,7 @@ class STLClient(object): if profile_type == 'python': self.logger.log('Type: {:^12}'.format('Python Module')) - self.logger.log('Tunables: {:^12}'.format(['{0} = {1}'.format(k ,v) for k, v in info['tunables'].items()])) + self.logger.log('Tunables: {:^12}'.format(str(['{0} = {1}'.format(k ,v) for k, v in info['tunables'].items()]))) elif profile_type == 'yaml': self.logger.log('Type: {:^12}'.format('YAML')) |