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

This commit is contained in:
Martin Krizek 2018-03-19 14:30:58 +01:00 committed by Abhijeet Kasurde
parent 64dfaf9cda
commit 5be9315603

View file

@ -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