Add html_url to "min" dictionary that is returned for issues (#32549)

This commit is contained in:
Nicole Thomas 2016-04-13 15:09:11 -06:00 committed by Mike Place
parent c8facc5dae
commit 778fbe00fa

View File

@ -847,7 +847,8 @@ def _format_issue(issue):
'issue_number': issue.get('number'),
'state': issue.get('state'),
'title': issue.get('title'),
'user': issue.get('user').get('login')}
'user': issue.get('user').get('login'),
'html_url': issue.get('html_url')}
assignee = issue.get('assignee')
if assignee: