From b78837615c4598c3da8355073f5a0efe9951f86a Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Thu, 7 Feb 2013 14:07:05 +0100 Subject: [PATCH] fix --- librarian/pyhtml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librarian/pyhtml.py b/librarian/pyhtml.py index c039ab8..7d70366 100644 --- a/librarian/pyhtml.py +++ b/librarian/pyhtml.py @@ -179,7 +179,7 @@ class EduModule(Xmill): def handle_link(self, element): if 'url' in element.attrib: - return tag('a', href=element.attrib['url'])(element) + return tag('a', href=element.attrib['url'])(self, element) elif 'material' in element.attrib: formats = re.split(r"[, ]+", element.attrib['format']) fmt_links = [] -- 2.20.1