From 23d2c8e694fbc6eb9da8a9aef3e112266e459316 Mon Sep 17 00:00:00 2001 From: Serge Noiraud Date: Sat, 4 Apr 2020 09:52:50 +0200 Subject: [PATCH] Same date of birth and death gives an error. (#1011) Fixes #011553 --- gramps/plugins/tool/verify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/tool/verify.py b/gramps/plugins/tool/verify.py index f3e84d988..4112a1b9a 100644 --- a/gramps/plugins/tool/verify.py +++ b/gramps/plugins/tool/verify.py @@ -1788,7 +1788,7 @@ class OldAgeButNoDeath(PersonRule): class BirthEqualsDeath(PersonRule): """ test if a person's birth date is the same as their death date """ ID = 33 - SEVERITY = Rule.ERROR + SEVERITY = Rule.WARNING def broken(self): """ return boolean indicating whether this rule is violated """ birth_date = get_birth_date(self.db, self.obj)