Fix cfbe to work with the latest version of be.
authorSteve Losh <steve@stevelosh.com>
Thu, 25 Jun 2009 21:38:02 +0000 (17:38 -0400)
committerSteve Losh <steve@stevelosh.com>
Thu, 25 Jun 2009 21:38:02 +0000 (17:38 -0400)
web.py

diff --git a/web.py b/web.py
index 7de7d3fe83ed8465e6fa21404d2ac03affdf22a1..b9df64f9be152e43b10c7ff9508d6076b83646e9 100644 (file)
--- a/web.py
+++ b/web.py
@@ -20,10 +20,12 @@ class WebInterface:
     
     def get_common_information(self):
         """Returns a dict of common information that most pages will need."""
-        possible_assignees = list(set([bug.assigned for bug in self.bd if unicode(bug.assigned) != 'None']))
+        possible_assignees = list(set(
+          [unicode(bug.assigned) for bug in self.bd if bug.assigned != 'None']))
         possible_assignees.sort(key=unicode.lower)
         
-        possible_targets = list(set([bug.target for bug in self.bd if unicode(bug.target) != 'None']))
+        possible_targets = list(set(
+          [unicode(bug.target) for bug in self.bd if bug.target != 'None']))
         possible_targets.sort(key=unicode.lower)
         
         possible_statuses = [u'open', u'assigned', u'test', u'unconfirmed',