hub: fix "opt-outs" comment in get_notification_recipients()

Fix a typo in the comment that describes the block of code that
assembles the set of opt-outs.
This commit is contained in:
Ken Dreyer 2020-06-15 09:57:30 -06:00 committed by Tomas Kopecek
parent e58c813faf
commit 4e9a1590f3

View file

@ -8385,7 +8385,7 @@ def get_notification_recipients(build, tag_id, state):
if not recipients:
return []
# apply the out outs
# apply the opt-outs
user_ids = list(set([r['user_id'] for r in recipients]))
if user_ids:
clauses = ['user_id IN %(user_ids)s']