From 08331a522f0d8d53b22f32f91c161b364c15e7a5 Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Wed, 31 Mar 2010 07:54:48 +0000 Subject: [PATCH] Fix for bug #3775. Add separation between citation links. svn: r14978 --- src/plugins/webreport/NarrativeWeb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index 36cf2b307..b5d932b31 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -345,7 +345,7 @@ class BasePage(object): for ref in gid_list: index, key = self.bibli.add_reference(ref) id_ = "%d%s" % (index+1, key) - text += '%s' % (id_, id_) + text += '%s' % (id_, id_) text += "" # return citation list text to its callers