X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FPapiExecutor.py;h=75bdde0ddf4724c6ece7f1da479bf397009cac7c;hp=6a47b9497f0d106e6c0db7610cd77b2b4a5d6ac1;hb=refs%2Fchanges%2F07%2F16507%2F1;hpb=fbe1d6dfbcacd8f3b80449b0d910b60f850b5dcc 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