Use cgit link for candidacy approval proof

There seems to be an issue when pasting full review link with ChangeId so let's
use cgit instead. Moreover it's more simple and lightweight to check like that.

Change-Id: Ic14f9edbd25bb56f17798c365b2e636d1a8fd452
This commit is contained in:
Tristan Cacqueray 2016-09-12 01:32:40 +00:00
parent 1f55a539ae
commit 9d96997e72

View File

@ -58,8 +58,9 @@ def check_candidate(project_name, email, projects, limit=1):
print('Checking %s for merged changes by %s' %
(repo_name, email))
for review in utils.get_reviews(query):
url = ('%s/#/q/%s' %
(utils.GERRIT_BASE, review['change_id']))
url = ('%s/%s/commit/?id=%s' % (
utils.BASE_URL, review['project'],
review['current_revision']))
print('%2d: %s %s' %
(found, pretty_datetime(review['submitted']),
url))