mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
list-workarounds: Fix python 2 print statement
That script is a python 3 script, so we can't use the python 2 print statement, it's a function now. I missed it in the review because reviewing a diff without additional context gives you a partial story. Cc: Sameer Kibey <sameer.kibey@intel.com> Cc: Dylan Baker <baker.dylan.c@gmail.com> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
This commit is contained in:
parent
fb9df0e510
commit
8d441ee491
@ -96,7 +96,7 @@ def print_workarounds(project_root, driver_dir, project):
|
||||
sys.exit(1)
|
||||
|
||||
parse(work_arounds)
|
||||
print "\nList of workarounds found in %s:" % project
|
||||
print("\nList of workarounds found in %s:" % project)
|
||||
for wa in sorted(workarounds.keys()):
|
||||
if not options.platform:
|
||||
print("%s: %s" % (wa, ', '.join(workarounds[wa])))
|
||||
|
Loading…
x
Reference in New Issue
Block a user