* 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

@@ -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 \