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

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