diff options
Diffstat (limited to 'extras/failed-tests.py')
| -rwxr-xr-x | extras/failed-tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/failed-tests.py b/extras/failed-tests.py index 54406f91ad3..f7f110246b5 100755 --- a/extras/failed-tests.py +++ b/extras/failed-tests.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python3 from __future__ import print_function import blessings @@ -74,7 +74,7 @@ def print_summary(failed_builds, total_builds, html=False): count[template], {'failed': failed_builds, 'total': total_builds} )) - for k, v in summary.iteritems(): + for k, v in summary.items(): if k == 'core': print(''.join([TERM.red, "Found cores:", TERM.normal])) for comp, link in zip(v[::2], v[1::2]): |
