From 67e2b69ec96a117b98c9028013ce0258574efe80 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Thu, 9 Mar 2017 00:18:10 +0000 Subject: filter: set environment variable PYTHONIOENCODING to utf-8 This allows different versions of Python to be used rather than forcing version specific encoding in each script. Signed-off-by: Roy Marples Signed-off-by: John Keeping --- filters/syntax-highlighting.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'filters/syntax-highlighting.py') diff --git a/filters/syntax-highlighting.py b/filters/syntax-highlighting.py index 5888b50..936fdb7 100755 --- a/filters/syntax-highlighting.py +++ b/filters/syntax-highlighting.py @@ -29,9 +29,6 @@ from pygments.lexers import guess_lexer from pygments.lexers import guess_lexer_for_filename from pygments.formatters import HtmlFormatter - -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') @@ -52,4 +49,4 @@ except TypeError: sys.stdout.write('') -sys.stdout.write(highlight(data, lexer, formatter, outfile=None)) +highlight(data, lexer, formatter, outfile=sys.stdout) -- cgit v1.2.3-70-g09d2