* fixed isinstance error
* added changelog fragment
(cherry picked from commit bfd6d2b3aa
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
pull/2253/head
parent
89498d3650
commit
5cdc70bda9
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- jira - fixed calling of ``isinstance`` (https://github.com/ansible-collections/community.general/issues/2234).
|
|
@ -389,7 +389,7 @@ def request(
|
|||
auth = to_text(base64.b64encode(to_bytes('{0}:{1}'.format(user, passwd), errors='surrogate_or_strict')))
|
||||
|
||||
headers = {}
|
||||
if isinstance(additional_headers) == dict:
|
||||
if isinstance(additional_headers, dict):
|
||||
headers = additional_headers.copy()
|
||||
headers.update({
|
||||
"Content-Type": content_type,
|
||||
|
|
Loading…
Reference in New Issue