4041: Filter rule people with records containing <substring> fails on street name

svn: r16760
This commit is contained in:
Michiel Nauta 2011-03-05 10:47:07 +00:00
parent db1c7c4b25
commit 959bea3507

View File

@ -81,7 +81,8 @@ class LocationBase(object):
:returns: Returns the list of all textual attributes of the object.
:rtype: list
"""
return [self.city, self.state, self.country, self.postal, self.phone]
return [self.street, self.locality, self.city, self.county,
self.state, self.country, self.postal, self.phone]
def set_street(self, val):
"""Set the street portion of the Location."""