From dee5d46be54907d715f127c6449b45cbb9df1648 Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Mon, 7 Sep 2015 10:19:19 +0200 Subject: [PATCH] Narrative web and cms : links not present. --- gramps/plugins/lib/libhtml.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gramps/plugins/lib/libhtml.py b/gramps/plugins/lib/libhtml.py index 7b2318d97..0d237a6bb 100644 --- a/gramps/plugins/lib/libhtml.py +++ b/gramps/plugins/lib/libhtml.py @@ -237,7 +237,7 @@ class Html(list): page += (head, body) return page, head, body # - def __init__(self, tag='html', cms=False, *args, **keywargs): + def __init__(self, tag='html', *args, **keywargs): """ Class Constructor: Returns a new instance of the Html class @@ -273,7 +273,6 @@ class Html(list): For full usage of the Html class with examples, please see the wiki page at: http://www.gramps-project.org/wiki/index.php?title=Libhtml """ - self.cms = cms # Replace super(Html, self) with list # Issue with Python 2.6 and reload of plugin list.__init__(self, []) # instantiate object