diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2011-11-11 16:45:37 +0100 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2011-11-11 16:45:37 +0100 |
commit | b06cfc09fc8afc2670cde58a8f4d597c7c93f6a5 (patch) | |
tree | 7e80e5a91d3a194b0bfae492f8f51997d8ac7550 | |
parent | Fix <herd> interpretation to not cause errors (diff) | |
download | packages-3-b06cfc09fc8afc2670cde58a8f4d597c7c93f6a5.tar.gz packages-3-b06cfc09fc8afc2670cde58a8f4d597c7c93f6a5.tar.bz2 packages-3-b06cfc09fc8afc2670cde58a8f4d597c7c93f6a5.zip |
Fix bugzilla statuses
-rw-r--r-- | web/lib/links.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/links.py b/web/lib/links.py index 1dde044..6fbedd9 100644 --- a/web/lib/links.py +++ b/web/lib/links.py @@ -48,7 +48,7 @@ def bugzilla_search_link(searchstring, """Give a quicksearch link for a Bugzilla install""" if bug_status is None: - bug_status = ['UNCONFIRMED', 'NEW', 'ASSIGNED', 'REOPENED'] + bug_status = ['UNCONFIRMED', 'IN_PROGRESS', 'CONFIRMED'] def f(k): """return a bug status match""" |