From bc25c4f6d1b92bd9a24027f4d7c7c112e8d47b14 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Fri, 6 Jul 2001 01:07:45 +0000 Subject: [PATCH] Fixed local source links svn: r231 --- 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 7f1fbb1e9..9e9fb80d2 100644 --- a/src/plugins/WebPage.py +++ b/src/plugins/WebPage.py @@ -191,10 +191,10 @@ class IndividualPage: self.doc.write_text(_("Sources")) self.doc.end_paragraph() - index = 0 + index = 1 for sref in self.slist: self.doc.start_paragraph("Data") - self.doc.write_text('%d. ' % (index,index)) + self.doc.write_text('%d. ' % (index,index)) index = index + 1 self.doc.write_text("%s. " % sref.getBase().getTitle()) author = sref.getBase().getAuthor()