cgit

commit 5564a5d06678b3f9b0725bc4b2383ea1b7eb5515

Author: Jason A. Donenfeld <Jason@zx2c4.com>

syntax-highlighting: replace invalid unicode with ?

 filters/syntax-highlighting.py | 4 ++--


diff --git a/filters/syntax-highlighting.py b/filters/syntax-highlighting.py
index 1ca410815a85a980b927f3d412c280937d1ade6e..5888b507863f020dddf7f5f7606c6bfcb304869e 100755
--- a/filters/syntax-highlighting.py
+++ b/filters/syntax-highlighting.py
@@ -30,8 +30,8 @@ from pygments.lexers import guess_lexer_for_filename
 from pygments.formatters import HtmlFormatter
 
 
-sys.stdin = io.TextIOWrapper(sys.stdin.buffer, encoding='utf-8')
-sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
+sys.stdin = io.TextIOWrapper(sys.stdin.buffer, encoding='utf-8', errors='replace')
+sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace')
 data = sys.stdin.read()
 filename = sys.argv[1]
 formatter = HtmlFormatter(style='pastie')