Found and hopefullyfixed a bug with fenrir watchdog.
This commit is contained in:
@@ -263,9 +263,10 @@ class driver(screenDriver):
|
||||
while True:
|
||||
# Read from file
|
||||
try:
|
||||
d += file.readline(1)
|
||||
if not d:
|
||||
chunk = file.readline(1)
|
||||
if not chunk:
|
||||
break
|
||||
d += chunk
|
||||
except Exception as e:
|
||||
break
|
||||
return d
|
||||
|
||||
Reference in New Issue
Block a user