More fixes
1 files changed, 1 insertions(+), 1 deletions(-) M src/wiki/plugins/links/mdx/urlize.py
M src/wiki/plugins/links/mdx/urlize.py => src/wiki/plugins/links/mdx/urlize.py +1 -1
@@ 146,7 146,7 @@ class UrlizePattern(markdown.inlinepatterns.Pattern): span_text.text = markdown.util.AtomicString(" " + text) # Set-up link itself. - el = markdown.util.etree.Element("a") + el = etree.Element("a") el.set("href", url) el.set("target", "_blank") el.set("rel", "nofollow")