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

svn: r16761
This commit is contained in:
Michiel Nauta 2011-03-05 10:49:01 +00:00
parent a414670cec
commit 9bc4a82007

View File

@ -78,7 +78,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.city, self.county, self.state, self.country,
self.postal, self.phone]
def set_street(self, val):
"""Set the street portion of the Location."""