From a5068998c3155c8209e0eb7d0ae786171e5754c5 Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Mon, 16 Aug 2004 13:28:41 +0000 Subject: [PATCH] 2004-08-16 Tim Waugh * src/RelLib.py: Fixed typo. svn: r3408 --- ChangeLog | 1 + src/RelLib.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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"""