Merge "Neutron review tool use message instead of topics for bugs"

This commit is contained in:
Jenkins 2016-01-26 14:17:21 +00:00 committed by Gerrit Code Review
commit 2c52dc40f0
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ def _search_task(project, **kwargs):
return
gerrit_query = "("
for b in bugs:
gerrit_query += ("topic:bug/%d OR " % b.bug.id)
gerrit_query += ("message:%d OR " % b.bug.id)
gerrit_query = gerrit_query[:-4]
gerrit_query += ")\n\n"
return gerrit_query