diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index e96ce7f63..52b36fdec 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,4 +1,5 @@ 2006-10-02 Don Allingham + * src/RelLib/_Location.py: call parent class properly * src/Selectors/_SelectPlace.py: use proper column for place handle * src/DisplayModels/_PlaceModel.py: specify place handle diff --git a/gramps2/src/RelLib/_Location.py b/gramps2/src/RelLib/_Location.py index 596c8e994..7cf575e7c 100644 --- a/gramps2/src/RelLib/_Location.py +++ b/gramps2/src/RelLib/_Location.py @@ -73,7 +73,7 @@ class Location(SecondaryObject,LocationBase): @return: Returns the list of all textual attributes of the object. @rtype: list """ - return [self.parish] + LocationBase.get_text_data_list() + return [self.parish] + LocationBase.get_text_data_list(self) def is_empty(self): return not self.city and not self.county and not self.state and \