2004-08-16 Tim Waugh <twaugh@redhat.com>

* src/RelLib.py: Fixed typo.


svn: r3408
This commit is contained in:
Tim Waugh 2004-08-16 13:28:41 +00:00
parent 54f4c3e277
commit cbab5461eb
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
2004-08-16 Tim Waugh <twaugh@redhat.com>
* 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.

View File

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