summaryrefslogtreecommitdiff
path: root/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'log.py')
-rw-r--r--log.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/log.py b/log.py
index 75885708..b301a833 100644
--- a/log.py
+++ b/log.py
@@ -27,6 +27,10 @@ class Log:
stream = sys.stderr
else:
stream = sys.stdout
+ if stream.errors == 'strict':
+ # emulate backslashreplace error handler
+ encoding = stream.encoding
+ msg = msg.encode(encoding, "backslashreplace").decode(encoding)
stream.write('%s\n' % msg)
stream.flush()