From 959bea35078dcb2a4b010aa73b34c973ea16f5f8 Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Sat, 5 Mar 2011 10:47:07 +0000 Subject: [PATCH] 4041: Filter rule people with records containing fails on street name svn: r16760 --- src/gen/lib/locationbase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gen/lib/locationbase.py b/src/gen/lib/locationbase.py index b649c2cb6..62671f6e8 100644 --- a/src/gen/lib/locationbase.py +++ b/src/gen/lib/locationbase.py @@ -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."""