mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-10-29 22:24:51 +00:00
Remove Python 2 support
Python 2 is long dead and devlib does not support it anymore, so cleanup old Python 2-only code.
This commit is contained in:
committed by
Marc Bonnici
parent
28b78a93f1
commit
6fe4bce68d
@@ -223,8 +223,7 @@ class JankbenchRunMonitor(threading.Thread):
|
||||
ready, _, _ = select.select([proc.stdout, proc.stderr], [], [], 2)
|
||||
if ready:
|
||||
line = ready[0].readline()
|
||||
if sys.version_info[0] == 3:
|
||||
line = line.decode(sys.stdout.encoding, 'replace')
|
||||
line = line.decode(sys.stdout.encoding, 'replace')
|
||||
if self.regex.search(line):
|
||||
self.run_ended.set()
|
||||
proc.terminate()
|
||||
|
||||
Reference in New Issue
Block a user