From 8768a5a54658fb05486028720037af466639c990 Mon Sep 17 00:00:00 2001 From: Floroni Date: Wed, 6 Mar 2019 12:22:20 +0100 Subject: [PATCH] removed True argument from store() as it raised a 3 arguments given error --- mdx_oembed/inlinepatterns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdx_oembed/inlinepatterns.py b/mdx_oembed/inlinepatterns.py index 8c59ea1..1dcee45 100644 --- a/mdx_oembed/inlinepatterns.py +++ b/mdx_oembed/inlinepatterns.py @@ -23,7 +23,7 @@ class OEmbedLinkPattern(Pattern): return None else: html = "
%s
" % html - placeholder = self.markdown.htmlStash.store(html, True) + placeholder = self.markdown.htmlStash.store(html) return placeholder def get_oembed_html_for_match(self, match):