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__)
|
module = 'ansible-%s' % os.path.basename(__file__)
|
||||||
msg = ''
|
msg = ''
|
||||||
for arg in log_args:
|
for arg in log_args:
|
||||||
if isinstance(log_args[arg], unicode):
|
if isinstance(log_args[arg], basestring):
|
||||||
msg = msg + arg + '=' + log_args[arg] + ' '
|
msg = msg + arg + '=' + log_args[arg].decode('utf-8') + ' '
|
||||||
else:
|
else:
|
||||||
msg = msg + arg + '=' + str(log_args[arg]) + ' '
|
msg = msg + arg + '=' + str(log_args[arg]) + ' '
|
||||||
if msg:
|
if msg:
|
||||||
|
@ -839,7 +839,7 @@ class AnsibleModule(object):
|
||||||
|
|
||||||
# 6655 - allow for accented characters
|
# 6655 - allow for accented characters
|
||||||
try:
|
try:
|
||||||
msg = unicode(msg).encode('utf8')
|
msg = msg.encode('utf8')
|
||||||
except UnicodeDecodeError, e:
|
except UnicodeDecodeError, e:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue