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. CC: Damien Lespiau <damien.lespiau at intel.com> CC: Kenneth Graunke <kenneth at whitecape.org> Signed-off-by: Ben Widawsky <ben at bwidawsk.net> --- scripts/list-workarounds | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/list-workarounds b/scripts/list-workarounds index 6c8c636..b874fd8 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,8 +103,8 @@ 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]))) + print(("%s: %s" % (wa, ', '.join(workarounds[wa])))) elif options.platform in workarounds[wa]: print(wa) -- 1.8.2.2