From b7ca10dbbff71b69683751b2ba5c3da6cd44f80b Mon Sep 17 00:00:00 2001 From: DR695H Date: Thu, 22 Aug 2019 17:52:53 -0400 Subject: use unicode encoding for the string Issue-ID: TEST-184 Change-Id: I41dbeecd8787efaf96b15f5961f00d7eadd3f4ae Signed-off-by: DR695H --- robotframework-onap/ONAPLibrary/RequestsHelper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/robotframework-onap/ONAPLibrary/RequestsHelper.py b/robotframework-onap/ONAPLibrary/RequestsHelper.py index 7dc5903..f3a0ad5 100644 --- a/robotframework-onap/ONAPLibrary/RequestsHelper.py +++ b/robotframework-onap/ONAPLibrary/RequestsHelper.py @@ -90,9 +90,9 @@ class RequestsHelper(object): @staticmethod def _format_md5(md5_input): - if md5_input is not None: + if md5_input is not None and isinstance(md5_input, str): md5 = hashlib.md5() - md5.update(md5_input) + md5.update(md5_input.encode('utf-8')) return Base64Keywords().base64_encode(md5.hexdigest()) else: - return None \ No newline at end of file + return None -- cgit 1.2.3-korg