be consistent about conversion to_str
This commit is contained in:
parent
54435261e8
commit
9f05ce3e2b
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ class AnsibleError(Exception):
|
|||
if extended_error:
|
||||
self.message = 'ERROR! %s\n\n%s' % (to_str(message), to_str(extended_error))
|
||||
else:
|
||||
self.message = 'ERROR! %s' % message
|
||||
self.message = 'ERROR! %s' % to_str(message)
|
||||
|
||||
def __str__(self):
|
||||
return self.message
|
||||
|
|
Loading…
Reference in a new issue