aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces/web/web.py
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2010-09-06 18:35:19 -0400
committerChris Ball <cjb@laptop.org>2010-09-07 11:00:56 -0400
commit8d1acfb3314d9276f3c6d5fa9c64ac93c4052775 (patch)
treefbfc43c346baeabad84c89e0623f58ece9bb84c9 /interfaces/web/web.py
parentf1c6c6a0122c5bed01ab7a084da1f2a67e796f37 (diff)
downloadbugseverywhere-8d1acfb3314d9276f3c6d5fa9c64ac93c4052775.tar.gz
cfbe: Fix assigned-to-None search
Diffstat (limited to 'interfaces/web/web.py')
-rw-r--r--interfaces/web/web.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces/web/web.py b/interfaces/web/web.py
index 4d922e2..44bdef1 100644
--- a/interfaces/web/web.py
+++ b/interfaces/web/web.py
@@ -63,7 +63,7 @@ class WebInterface:
bugs = [bug for bug in self.bd if bug.status in status]
if assignee != '':
- assignee = EMPTY if assignee == 'None' else assignee
+ assignee = None if assignee == 'None' else assignee
bugs = [bug for bug in bugs if bug.assigned == assignee]
if target != '':