jira: Fixes json reading string object instead of byte (#52660)

This commit is contained in:
Sayed Anisul Hoque 2019-02-20 17:52:01 +01:00 committed by Abhijeet Kasurde
parent bd0cad6ed7
commit 1651d4f21a

View file

@ -263,7 +263,7 @@ def request(url, user, passwd, timeout, data=None, method=None):
body = response.read()
if body:
return json.loads(body)
return json.loads(to_text(body, errors='surrogate_or_strict'))
else:
return {}