From 9bc4a820075982fc8619e3673f847a21c69d7595 Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Sat, 5 Mar 2011 10:49:01 +0000 Subject: [PATCH] 4041: Filter rule people with records containing fails on street name svn: r16761 --- 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 ac8d05436..fe134c70f 100644 --- a/src/gen/lib/locationbase.py +++ b/src/gen/lib/locationbase.py @@ -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."""