From 61c94cb98f67d2f48e34d45125236fd91f60362a Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Thu, 12 May 2016 11:07:47 +0200 Subject: [PATCH] Fix incorrect filter in pick.py fixes #11782 --- pick.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pick.py b/pick.py index 869d9b40f..98e2d4c30 100755 --- a/pick.py +++ b/pick.py @@ -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