From 54e0cf8320ca65beff535e0501762f80caa19b6e Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Wed, 15 May 2002 01:48:38 +0000 Subject: [PATCH] Fix gendex generation svn: r991 --- src/plugins/WebPage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/WebPage.py b/src/plugins/WebPage.py index cebe2a6f5..1189b97a3 100644 --- a/src/plugins/WebPage.py +++ b/src/plugins/WebPage.py @@ -656,9 +656,9 @@ class WebReport(Report): f.write("%s.%s|" % (p.getId(),self.ext)) f.write("%s|" % surName) if suffix == "": - f.write("%s /%s/" % (firstName,surName)) + f.write("%s /%s/|" % (firstName,surName)) else: - f.write("%s /%s/, %s" % (firstName,surName, suffix)) + f.write("%s /%s/, %s|" % (firstName,surName, suffix)) for e in [p.getBirth(),p.getDeath()]: if e: f.write("%s|" % self.make_date(e.getDateObj()))