Remove Python 2 specific syntax

This commit is contained in:
butterflya 2017-03-11 17:42:20 +01:00 committed by GitHub
parent 286917bfc9
commit 55e477c1f1

View File

@ -74,13 +74,13 @@ def cli(jobset):
# TODO: dependency failed without propagated builds # TODO: dependency failed without propagated builds
for tr in d('img[alt="Failed"]').parents('tr'): for tr in d('img[alt="Failed"]').parents('tr'):
a = pq(tr)('a')[1] a = pq(tr)('a')[1]
print "- [ ] [{}]({})".format(a.text, a.get('href')) print("- [ ] [{}]({})".format(a.text, a.get('href')))
sys.stdout.flush() sys.stdout.flush()
maintainers = get_maintainers(a.text) maintainers = get_maintainers(a.text)
if maintainers: if maintainers:
print " - maintainers: {}".format(", ".join(map(lambda u: '@' + u, maintainers))) print(" - maintainers: {}".format(", ".join(map(lambda u: '@' + u, maintainers))))
# TODO: print last three persons that touched this file # TODO: print last three persons that touched this file
# TODO: pinpoint the diff that broke this build, or maybe it's transient or maybe it never worked? # TODO: pinpoint the diff that broke this build, or maybe it's transient or maybe it never worked?