Fixed SaveDate when date is None

svn: r495
This commit is contained in:
Don Allingham
2001-10-19 14:52:39 +00:00
parent 8de449b106
commit 9466349afb
3 changed files with 6 additions and 5 deletions

View File

@@ -1105,7 +1105,7 @@ class Event(DataObj):
def getSaveDate(self) :
"""returns the date of the Event in the form wanted by gramps XML save"""
if not self.date:
if self.date:
return self.date.getSaveDate()
return ""