Fix opening in binary mode destroys parsing with python 3 (#25)
Fix performance graph can't read log with Python 3
This commit is contained in:
parent
71b23c3abe
commit
728dfef0c8
|
@ -43,7 +43,7 @@ class KlipperLogAnalyzer():
|
||||||
out = []
|
out = []
|
||||||
|
|
||||||
try:
|
try:
|
||||||
f = open(logname, 'rb')
|
f = open(logname, 'r')
|
||||||
|
|
||||||
for line in f:
|
for line in f:
|
||||||
parts = line.split()
|
parts = line.split()
|
||||||
|
|
Loading…
Reference in New Issue