Merge "ensure the topic is set to a valid default string"

This commit is contained in:
Zuul 2018-10-03 15:48:00 +00:00 committed by Gerrit Code Review
commit 6682b67b7f
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ def all_changes():
def get_one_status(change, delegates):
topic = change.get('topic')
topic = change.get('topic', 'unknown topic')
subject = change.get('subject')
owner = change.get('owner', {}).get('name')
url = 'https://review.openstack.org/{}\n'.format(change['_number'])