aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/PapiExecutor.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/python/PapiExecutor.py')
-rw-r--r--resources/libraries/python/PapiExecutor.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/resources/libraries/python/PapiExecutor.py b/resources/libraries/python/PapiExecutor.py
index 6a47b9497f..75bdde0ddf 100644
--- a/resources/libraries/python/PapiExecutor.py
+++ b/resources/libraries/python/PapiExecutor.py
@@ -95,9 +95,10 @@ class PapiExecutor(object):
reply_value = dict()
for reply_key, reply_v in api_r.iteritems():
for a_k, a_v in reply_v.iteritems():
- value = binascii.unhexlify(a_v) if isinstance(a_v, unicode) \
- else a_v
- reply_value[a_k] = value
+ # value = binascii.unhexlify(a_v) if isinstance(a_v, unicode) \
+ # else a_v
+ # reply_value[a_k] = value
+ reply_value[a_k] = a_v
reply_dict[reply_key] = reply_value
return reply_dict