mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
jira - fixed isinstance error (#2236)
* fixed isinstance error * added changelog fragment
This commit is contained in:
2
changelogs/fragments/2236-jira-isinstance.yml
Normal file
2
changelogs/fragments/2236-jira-isinstance.yml
Normal file
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user