mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-10-30 06:34:13 +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
@@ -256,10 +256,7 @@ class Meabo(Workload):
|
||||
|
||||
outfile = os.path.join(context.output_directory, 'meabo-output.txt')
|
||||
with open(outfile, 'wb') as wfh:
|
||||
if sys.version_info[0] == 3:
|
||||
wfh.write(self.output.encode('utf-8'))
|
||||
else:
|
||||
wfh.write(self.output)
|
||||
wfh.write(self.output.encode('utf-8'))
|
||||
context.add_artifact('meabo-output', outfile, kind='raw')
|
||||
|
||||
cur_phase = 0
|
||||
|
||||
Reference in New Issue
Block a user