* src/RelLib/_Location.py: call parent class properly
svn: r7342
This commit is contained in:
parent
c84ec006ab
commit
f52e16de92
@ -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
|
||||||
|
|
||||||
|
@ -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 \
|
||||||
|
Loading…
Reference in New Issue
Block a user