Fix 'reviewers' command to make with Python3

Change-Id: I9716ed3f629d54f1a4e82dc64bf65a0702af6a25
This commit is contained in:
Ivan Kolodyazhny 2020-06-19 21:48:00 +03:00
parent 7be58d6af8
commit 98e27f513d
2 changed files with 3 additions and 3 deletions

View File

@ -337,7 +337,7 @@ def main(argv=None):
elif change['status'] == 'WORKINPROGRESS':
change_stats['wip'] += 1
reviewers = [(v, k) for k, v in reviewers.iteritems()
reviewers = [(v, k) for k, v in reviewers.items()
if k.lower() not in ('jenkins', 'smokestack')]
reviewers.sort(reverse=True, key=lambda r: r[0]['total'])
# Do logical processing of reviewers.

View File

@ -53,7 +53,7 @@ def get_remote_data(address, datatype='json'):
raise DataRetrievalFailed(msg)
data = ""
while True:
chunk = remote_data.read()
chunk = remote_data.read().decode('utf-8')
if not chunk:
break
data += chunk
@ -306,7 +306,7 @@ def get_changes(projects, ssh_user, ssh_key, only_open=False, stable='',
# for the sake of not having to change all the code that calls this
# function (yet, anyway).
all_changes = [value for value in all_changes.itervalues()]
all_changes = [value for value in all_changes.values()]
return all_changes