updated to use to_unicode as per feedback
This commit is contained in:
parent
b9d0662faf
commit
2b5fffa751
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ class ActionBase(with_metaclass(ABCMeta, object)):
|
|||
else:
|
||||
x = remote_stat['checksum'] # if 1, file is missing
|
||||
except AnsibleError as e:
|
||||
errormsg = to_bytes(e)
|
||||
errormsg = to_unicode(e)
|
||||
if errormsg.endswith('Permission denied'):
|
||||
x = "2" # cannot read file
|
||||
elif errormsg.endswith('MODULE FAILURE'):
|
||||
|
|
Loading…
Reference in a new issue