From 07527ad229ed1d12efcff1eac9a6645de4e29a0a Mon Sep 17 00:00:00 2001 From: Peter Landgren Date: Sat, 20 Mar 2010 11:52:08 +0000 Subject: [PATCH] Fix of issue 3737. svn: r14876 --- 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 680b4cfad..ff74af9d6 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -893,7 +893,7 @@ class BasePage(object): text = '© %(year)d %(person)s' % { 'person' : self.author, 'year' : year} - elif 0 < copy_nr <= len(_CC): + elif copy_nr < len(_CC): # Note. This is a URL fname = "/".join(["images", "somerights20.gif"]) url = self.report.build_url_fname(fname, None, self.up)