mirror of https://github.com/Desuuuu/klipper.git
test_klippy: Convert to Python3 string encoding
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
2978771ce5
commit
9ce07921c4
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue