aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/PapiHistory.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/python/PapiHistory.py')
-rw-r--r--resources/libraries/python/PapiHistory.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/libraries/python/PapiHistory.py b/resources/libraries/python/PapiHistory.py
index 6a4f913d03..c4ee4ee495 100644
--- a/resources/libraries/python/PapiHistory.py
+++ b/resources/libraries/python/PapiHistory.py
@@ -51,6 +51,8 @@ class PapiHistory(object):
def add_to_papi_history(node, csit_papi_command, papi=True, **kwargs):
"""Add command to PAPI command history on DUT node.
+ Repr strings are used for argument values.
+
The argument name 'csit_papi_command' must be unique enough as it cannot
be repeated in kwargs.
@@ -84,7 +86,7 @@ class PapiHistory(object):
if papi:
args = list()
for key, val in kwargs.iteritems():
- args.append("{key}={val}".format(key=key, val=val))
+ args.append("{key}={val!r}".format(key=key, val=val))
item = "{cmd}({args})".format(cmd=csit_papi_command,
args=",".join(args))
else: