[CMF-checkins] CVS: CMF/CMFCollector - CollectorIssue.py:1.13
Ken Manheimer
klm@zope.com
Mon, 22 Oct 2001 17:13:41 -0400
Update of /cvs-repository/CMF/CMFCollector
In directory cvs.zope.org:/tmp/cvs-serv29894
Modified Files:
CollectorIssue.py
Log Message:
.SearchableText(): Guard against .resolution attribute being a
non-string (which it always will be at the moment, since it's not yet
used, sigh).
=== CMF/CMFCollector/CollectorIssue.py 1.12 => 1.13 ===
+ self.severity + ' '
+ self.status() + ' '
- + self.resolution + ' '
+ + (self.resolution or '') + ' '
+ self.reported_version + ' '
+ self.other_version_info + ' '
+ ((self.security_related and 'security_related') or ''))