From a3bdc580ff5b9b42d486a5eef96bfefff286145e Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Mon, 13 Oct 2008 22:49:54 -0400 Subject: Fixed minor typo in previous commit on ImageLinks extension. --- markdown_extensions/imagelinks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown_extensions/imagelinks.py b/markdown_extensions/imagelinks.py index 56d1cc6..ba86d24 100644 --- a/markdown_extensions/imagelinks.py +++ b/markdown_extensions/imagelinks.py @@ -31,7 +31,7 @@ class ImageLinksExtension (markdown.Extension): def extendMarkdown(self, md, md_globals) : - md.preprocessors.add("imagelink", ImageLinkPreprocessor(self), "_begin") + md.preprocessors.add("imagelink", ImageLinkPreprocessor(md), "_begin") class ImageLinkPreprocessor (markdown.Preprocessor): -- cgit v1.2.3