removed True argument from store() as it raised a 3 arguments given error

This commit is contained in:
Floroni 2019-03-06 12:22:20 +01:00
parent 81a8378564
commit 8768a5a546

View file

@ -23,7 +23,7 @@ class OEmbedLinkPattern(Pattern):
return None return None
else: else:
html = "<figure class=\"oembed\">%s</figure>" % html html = "<figure class=\"oembed\">%s</figure>" % html
placeholder = self.markdown.htmlStash.store(html, True) placeholder = self.markdown.htmlStash.store(html)
return placeholder return placeholder
def get_oembed_html_for_match(self, match): def get_oembed_html_for_match(self, match):