All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] list-workarounds: Fix python 2 print statement
@ 2016-02-08 12:08 Damien Lespiau
  2016-02-08 17:04 ` Kibey, Sameer
  2016-02-08 18:16 ` Dylan Baker
  0 siblings, 2 replies; 3+ messages in thread
From: Damien Lespiau @ 2016-02-08 12:08 UTC (permalink / raw)
  To: intel-gfx; +Cc: Dylan Baker, Sameer Kibey

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>
---
 scripts/list-workarounds | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/list-workarounds b/scripts/list-workarounds
index 8b41ae5..70c026d 100755
--- a/scripts/list-workarounds
+++ b/scripts/list-workarounds
@@ -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])))
-- 
2.4.3

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-02-08 18:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-08 12:08 [PATCH i-g-t] list-workarounds: Fix python 2 print statement Damien Lespiau
2016-02-08 17:04 ` Kibey, Sameer
2016-02-08 18:16 ` Dylan Baker

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.