aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces/web/web.py
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/web/web.py')
-rw-r--r--interfaces/web/web.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/interfaces/web/web.py b/interfaces/web/web.py
index c95cf47..5007ac1 100644
--- a/interfaces/web/web.py
+++ b/interfaces/web/web.py
@@ -34,7 +34,9 @@ class WebInterface:
possible_assignees.sort(key=unicode.lower)
possible_targets = list(set(
- [unicode(bug.target) for bug in self.bd if bug.target != EMPTY]))
+ [unicode(bug.summary.rstrip("\n")) for bug in self.bd \
+ if bug.severity == u"target"]))
+
possible_targets.sort(key=unicode.lower)
possible_statuses = [u'open', u'assigned', u'test', u'unconfirmed',