mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Fix Non-ASCII characters being escaped if in wrong locale (#369)
This commit is contained in:
parent
d8fd5e9bb4
commit
4de98fd782
1 changed files with 5 additions and 2 deletions
|
@ -42,9 +42,12 @@ def safe_print(message=""):
|
|||
pass
|
||||
|
||||
try:
|
||||
print(message.encode('ascii', 'backslashreplace'))
|
||||
print(message.encode('utf-8', 'backslashreplace'))
|
||||
except UnicodeEncodeError:
|
||||
print("Cannot print line because of invalid locale!")
|
||||
try:
|
||||
print(message.encode('ascii', 'backslashreplace'))
|
||||
except UnicodeEncodeError:
|
||||
print("Cannot print line because of invalid locale!")
|
||||
|
||||
|
||||
def shlex_quote(s):
|
||||
|
|
Loading…
Reference in a new issue