mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
* fixed isinstance error
* added changelog fragment
(cherry picked from commit bfd6d2b3aa)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
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')))
|
auth = to_text(base64.b64encode(to_bytes('{0}:{1}'.format(user, passwd), errors='surrogate_or_strict')))
|
||||||
|
|
||||||
headers = {}
|
headers = {}
|
||||||
if isinstance(additional_headers) == dict:
|
if isinstance(additional_headers, dict):
|
||||||
headers = additional_headers.copy()
|
headers = additional_headers.copy()
|
||||||
headers.update({
|
headers.update({
|
||||||
"Content-Type": content_type,
|
"Content-Type": content_type,
|
||||||
|
|||||||
Reference in New Issue
Block a user