mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 09:13:12 +00:00
Merge pull request #13900 from Yannig/devel_fix_unicode_parsing_with_error
Allow Ansible to return error with unicode within it.
This commit is contained in:
@@ -54,7 +54,7 @@ class AnsibleError(Exception):
|
||||
if obj and isinstance(obj, AnsibleBaseYAMLObject):
|
||||
extended_error = self._get_extended_error()
|
||||
if extended_error:
|
||||
self.message = 'ERROR! %s\n\n%s' % (message, to_str(extended_error))
|
||||
self.message = 'ERROR! %s\n\n%s' % (to_str(message), to_str(extended_error))
|
||||
else:
|
||||
self.message = 'ERROR! %s' % message
|
||||
|
||||
|
||||
Reference in New Issue
Block a user