aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2014-11-12 17:27:17 +0100
committerAndre Klapper <a9016009@gmx.de>2014-11-12 17:27:17 +0100
commit5bea773c03f598f51d15f5138baa95b4f45a313f (patch)
treec5df86ee0d970270d4711b74e84e875bc67570ad
parent0fc190dc9980e5f5c883cae358804e97eb280506 (diff)
Fix conversion of Bugzilla's Verified status into a Phab tag
Change-Id: I63c88d1f0c8db5ba79b2aed5aee25a774fe07061
-rwxr-xr-xbugzilla_create.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzilla_create.py b/bugzilla_create.py
index 873637f..608dd68 100755
--- a/bugzilla_create.py
+++ b/bugzilla_create.py
@@ -132,7 +132,7 @@ def create(bugid):
if buginfo['status'].lower() == 'patch_to_review':
ptags.append(('patch_to_review', 'tags', 'green'))
- if buginfo['status'] == 'verified':
+ if buginfo['status'].lower() == 'verified':
ptags.append(('verified', 'tags'))
if buginfo['cf_browser'] not in ['---', "Other"]: