Fix Non-ASCII characters being escaped if in wrong locale (#369)

This commit is contained in:
Otto Winter 2019-01-19 16:48:16 +01:00 committed by GitHub
parent d8fd5e9bb4
commit 4de98fd782
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,6 +41,9 @@ def safe_print(message=""):
except UnicodeEncodeError:
pass
try:
print(message.encode('utf-8', 'backslashreplace'))
except UnicodeEncodeError:
try:
print(message.encode('ascii', 'backslashreplace'))
except UnicodeEncodeError: