apt: use to_native instead of str for exc (#37595)
This commit is contained in:
parent
64dfaf9cda
commit
5be9315603
1 changed files with 1 additions and 1 deletions
|
@ -857,7 +857,7 @@ def get_cache(module):
|
|||
# try again
|
||||
cache = apt.Cache()
|
||||
else:
|
||||
module.fail_json(msg=str(e))
|
||||
module.fail_json(msg=to_native(e))
|
||||
return cache
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue