show the owner of each patch in status report

Change-Id: I25879e7a8f4d5a5f2632bfea7a2d3122e2f5a660
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2019-03-06 13:48:19 -05:00
parent 9256cc6d5a
commit a490d70a85
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,