mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-10 19:01:14 +00:00
updated .decode('utf-8') to to_text()
This commit is contained in:
committed by
Brian Coca
parent
1ff7b258f4
commit
0f0e976183
@@ -21,6 +21,7 @@
|
||||
|
||||
from ansible.module_utils.basic import env_fallback
|
||||
from ansible.module_utils.urls import open_url
|
||||
from ansible.module_utils._text import to_text
|
||||
|
||||
import json
|
||||
import re
|
||||
@@ -244,7 +245,7 @@ class JsonRpc(object):
|
||||
raise NsoException(
|
||||
'NSO returned HTTP code {0}, expected 200'.format(resp.status), {})
|
||||
|
||||
resp_body = resp.read().decode('utf8')
|
||||
resp_body = to_text(resp.read())
|
||||
resp_json = json.loads(resp_body)
|
||||
|
||||
if 'error' in resp_json:
|
||||
|
||||
Reference in New Issue
Block a user