We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 05a4eda + 4909e3a commit fc8901cCopy full SHA for fc8901c
labgrid/driver/fastbootdriver.py
@@ -59,7 +59,7 @@ def _filter_fastboot_output(output, prefix='(bootloader) '):
59
Splits output by '\n' and returns only elements starting with prefix. The prefix is
60
removed.
61
"""
62
- return [line[len(prefix):] for line in output.split('\n') if line.startswith(prefix)]
+ return [line[len(prefix):] for line in output.decode().split('\n') if line.startswith(prefix)]
63
64
def on_activate(self):
65
pass
0 commit comments