patchupdate.py: Do not warn about ASSIGNED bugs.

This commit is contained in:
Sebastian Lackner 2015-04-17 06:25:58 +02:00
parent d9bdc6ae51
commit d8cb439f29

View File

@ -323,7 +323,7 @@ def read_patchset(revision = None):
if revision is None:
once = True
for bugid, bug in sorted(_winebugs_query(all_bugids).items()):
if bug['bug_status'] not in ["UNCONFIRMED", "NEW", "REOPENED"]:
if bug['bug_status'] not in ["UNCONFIRMED", "NEW", "ASSIGNED", "REOPENED"]:
if once:
print ""
print "WARNING: The following bugs might require attention:"