From 3c768c97c6b585717a08ccbc1fd7cedb4807fd3f Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Mon, 2 Jun 2003 15:23:27 +0000 Subject: [PATCH] * src/plugins/DetAncestralReport.py (write_marriage): svn: r1629 --- gramps2/src/plugins/DetAncestralReport.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gramps2/src/plugins/DetAncestralReport.py b/gramps2/src/plugins/DetAncestralReport.py index 19f989103..f4e89ffdb 100644 --- a/gramps2/src/plugins/DetAncestralReport.py +++ b/gramps2/src/plugins/DetAncestralReport.py @@ -491,7 +491,9 @@ class DetAncestorReport(Report): else: t= _(" %s married %s on %s in %s") % \ (heshe, spouse, fulldate, place) else: - if fulldate == "" and place != "": + if fulldate == "" and place == "": + t= _(" %s married") % heshe + elif fulldate == "" and place != "": t= _(" %s married in %s") % (heshe, place) elif fulldate != "" and place == "": t= _(" %s married on %s") % (heshe, fulldate)