[Mesa-dev] [PATCH shader-db 1/4] Fix Python2ism that crept into report.py.
Kenneth Graunke
kenneth at whitecape.org
Tue Jan 5 03:04:42 PST 2016
I ported this to Python 3 back in 2012. It's not supposed to be run
with Python 2.
---
report.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/report.py b/report.py
index 409474a..1352f22 100755
--- a/report.py
+++ b/report.py
@@ -73,7 +73,7 @@ def main():
affected_before[m] = 0
affected_after[m] = 0
- print m
+ print(m)
helped = []
hurt = []
--
2.6.4
More information about the mesa-dev
mailing list