Fix incorrect filter in pick.py

fixes #11782
This commit is contained in:
Gunnar Beutner 2016-05-12 11:07:47 +02:00
parent 91e073464a
commit 61c94cb98f
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ while True:
if "custom_fields" in issue:
for field in issue["custom_fields"]:
if field["id"] == 12 and "value" in field and field["value"] != "0":
if field["id"] == 12 and "value" in field and field["value"] != "Not yet backported":
ignore_issue = True
break