From f6595ce68dc47e4e60f94dd8b80dbd5573e4c360 Mon Sep 17 00:00:00 2001 From: Jonas Hahnfeld Date: Thu, 19 Sep 2019 20:26:25 +0200 Subject: [PATCH 1/5] lilylib: sys.stderr.write expects strings ... not encoded bytes. This fixes the first error when running the check / test target. --- python/lilylib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lilylib.py b/python/lilylib.py index 3850f4e2a3..ef156115a5 100644 --- a/python/lilylib.py +++ b/python/lilylib.py @@ -127,7 +127,7 @@ def is_verbose (): return is_loglevel ("DEBUG") def stderr_write (s): - encoded_write (sys.stderr, s) + sys.stderr.write (s) def print_logmessage (level, s, fullmessage = True, newline = True): if (is_loglevel (level)): -- 2.23.0