* src/RelLib/_Location.py: call parent class properly

svn: r7342
This commit is contained in:
Don Allingham 2006-10-03 02:56:30 +00:00
parent c84ec006ab
commit f52e16de92
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
2006-10-02 Don Allingham <don@gramps-project.org> 2006-10-02 Don Allingham <don@gramps-project.org>
* src/RelLib/_Location.py: call parent class properly
* src/Selectors/_SelectPlace.py: use proper column for place handle * src/Selectors/_SelectPlace.py: use proper column for place handle
* src/DisplayModels/_PlaceModel.py: specify place handle * src/DisplayModels/_PlaceModel.py: specify place handle

View File

@ -73,7 +73,7 @@ class Location(SecondaryObject,LocationBase):
@return: Returns the list of all textual attributes of the object. @return: Returns the list of all textual attributes of the object.
@rtype: list @rtype: list
""" """
return [self.parish] + LocationBase.get_text_data_list() return [self.parish] + LocationBase.get_text_data_list(self)
def is_empty(self): def is_empty(self):
return not self.city and not self.county and not self.state and \ return not self.city and not self.county and not self.state and \