apt: use to_native instead of str for exc (#37595)

pull/36445/head
Martin Krizek 6 years ago committed by Abhijeet Kasurde
parent 64dfaf9cda
commit 5be9315603

@ -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…
Cancel
Save