From 9ce07921c4690f3fab2a6ad9beaab4848f4732b9 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 11 Jun 2020 22:48:18 -0400 Subject: [PATCH] test_klippy: Convert to Python3 string encoding Signed-off-by: Kevin O'Connor --- scripts/test_klippy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/test_klippy.py b/scripts/test_klippy.py index dff0b8e6..8363ca0b 100644 --- a/scripts/test_klippy.py +++ b/scripts/test_klippy.py @@ -37,7 +37,7 @@ class TestCase: config_fname = gcode_fname = dict_fnames = None should_fail = multi_tests = False gcode = [] - f = open(self.fname, 'rb') + f = open(self.fname, 'r') for line in f: cpos = line.find('#') if cpos >= 0: @@ -78,7 +78,7 @@ class TestCase: if gcode_fname is None: gcode_fname = self.relpath(TEMP_GCODE_FILE, 'temp') gcode_is_temp = True - f = open(gcode_fname, 'wb') + f = open(gcode_fname, 'w') f.write('\n'.join(gcode + [''])) f.close() elif gcode: @@ -126,7 +126,7 @@ class TestCase: return "internal error" return "success" def show_log(self): - f = open(TEMP_LOG_FILE, 'rb') + f = open(TEMP_LOG_FILE, 'r') data = f.read() f.close() sys.stdout.write(data)