Properly catch and decode unicode strings in module _log_invocation()
Fixes #7084
This commit is contained in:
parent
4f673b9497
commit
68c30548e0
1 changed files with 3 additions and 3 deletions
|
@ -828,8 +828,8 @@ class AnsibleModule(object):
|
|||
module = 'ansible-%s' % os.path.basename(__file__)
|
||||
msg = ''
|
||||
for arg in log_args:
|
||||
if isinstance(log_args[arg], unicode):
|
||||
msg = msg + arg + '=' + log_args[arg] + ' '
|
||||
if isinstance(log_args[arg], basestring):
|
||||
msg = msg + arg + '=' + log_args[arg].decode('utf-8') + ' '
|
||||
else:
|
||||
msg = msg + arg + '=' + str(log_args[arg]) + ' '
|
||||
if msg:
|
||||
|
@ -839,7 +839,7 @@ class AnsibleModule(object):
|
|||
|
||||
# 6655 - allow for accented characters
|
||||
try:
|
||||
msg = unicode(msg).encode('utf8')
|
||||
msg = msg.encode('utf8')
|
||||
except UnicodeDecodeError, e:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue