summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBen Widawsky <ben@bwidawsk.net>2013-05-10 15:25:49 -0700
committerBen Widawsky <ben@bwidawsk.net>2013-05-11 16:00:08 -0700
commit0e8931925d725317d34bfbe0ba48b52b67ec7859 (patch)
tree036287f90e9e6b34f939a3336efc79ce4dfbf3c3 /scripts
parent397dcb745ec517eb116694575ac159242bc179bd (diff)
list-workarounds: Convert to python3
The rest of the tool suite that uses python already uses python3. The tool configure requires python >= 3 (which is confusing because of the no backward compat problem). The world is slowly moving to python3. Converted with 2to3. Reviewed-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/list-workarounds6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/list-workarounds b/scripts/list-workarounds
index 6c8c636a..687e0e17 100755
--- a/scripts/list-workarounds
+++ b/scripts/list-workarounds
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
import os,sys
import optparse
@@ -29,7 +29,7 @@ wa_re = re.compile('(?P<name>Wa[A-Z0-9][a-zA-Z0-9_]+):(?P<platforms>[a-z,]+)')
waname_re = re.compile('(?P<name>Wa[A-Z0-9][a-zA-Z0-9_]+)')
def parse(me):
for line in me.splitlines():
- match = wa_re.search(line)
+ match = wa_re.search(str(line))
if not match:
if not verbose:
continue
@@ -103,7 +103,7 @@ if __name__ == '__main__':
sys.exit(1)
parse(work_arounds)
- for wa in sorted(workarounds.iterkeys()):
+ for wa in sorted(workarounds.keys()):
if not options.platform:
print("%s: %s" % (wa, ', '.join(workarounds[wa])))
elif options.platform in workarounds[wa]: