Merge "show the owner of each patch in status report"

This commit is contained in:
Zuul 2019-03-07 14:01:58 +00:00 committed by Gerrit Code Review
commit ae813fd499
1 changed files with 6 additions and 1 deletions

View File

@ -375,7 +375,12 @@ def get_one_status(change, delegates):
return {
'Topic': topic,
'Subject': subject,
'Summary': '\n'.join([subject.strip(), '', url]),
'Summary': '\n'.join([
subject.strip(),
'',
url,
'Submitted by: {}'.format(owner.strip())
]),
'Owner': owner,
'URL': url,
'Age': age.days,