diff --git a/ChangeLog b/ChangeLog index ee02397bf..c89a5117c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ 2004-08-16 Tim Waugh + * src/RelLib.py: Fixed typo. * gramps.spec.in, gramps-mdk.spec.in: Fixed. * src/data/gramps.desktop: Fixed. * src/data/Makefile.am: Fix 'distcheck' as much as possible. diff --git a/src/RelLib.py b/src/RelLib.py index ec3b4a368..0d734876b 100644 --- a/src/RelLib.py +++ b/src/RelLib.py @@ -890,7 +890,7 @@ class Event(PrimaryObject,DataObj): cause = self.cause name = self.name return (not name or name == "Birth" or name == "Death") and \ - date.is_empty() and not place and not description and not cause) + date.is_empty() and not place and not description and not cause def set(self,name,date,place,description): """sets the name, date, place, and description of an Event instance"""