Fix python 3 compatibility (#41645)
This commit is contained in:
parent
a3a595e60a
commit
19deb6b49e
1 changed files with 2 additions and 2 deletions
|
@ -264,7 +264,7 @@ state:
|
|||
from ansible.module_utils.basic import AnsibleModule, to_bytes
|
||||
from ansible.module_utils.six.moves.urllib.parse import urlencode
|
||||
from ansible.module_utils.urls import fetch_url, url_argument_spec
|
||||
from ansible.module_utils._text import to_native
|
||||
from ansible.module_utils._text import to_native, text_type, binary_type
|
||||
import base64
|
||||
import hashlib
|
||||
import json
|
||||
|
@ -610,7 +610,7 @@ class JenkinsPlugin(object):
|
|||
# Store the plugin into a temp file and then move it
|
||||
tmp_f_fd, tmp_f = tempfile.mkstemp()
|
||||
|
||||
if isinstance(data, str):
|
||||
if isinstance(data, (text_type, binary_type)):
|
||||
os.write(tmp_f_fd, data)
|
||||
else:
|
||||
os.write(tmp_f_fd, data.read())
|
||||
|
|
Loading…
Reference in a new issue