aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/test_klippy.py6
1 files 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)