diff options
author | Waylan Limberg <waylan@gmail.com> | 2008-10-13 22:49:54 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2008-10-13 22:49:54 -0400 |
commit | a3bdc580ff5b9b42d486a5eef96bfefff286145e (patch) | |
tree | f57e10272f92b9eb46145fe4a345247e61bb7b22 /markdown_extensions/imagelinks.py | |
parent | 430126aa943223f2c3d36fcde77a3a39d6088b4c (diff) | |
download | markdown-a3bdc580ff5b9b42d486a5eef96bfefff286145e.tar.gz markdown-a3bdc580ff5b9b42d486a5eef96bfefff286145e.tar.bz2 markdown-a3bdc580ff5b9b42d486a5eef96bfefff286145e.zip |
Fixed minor typo in previous commit on ImageLinks extension.
Diffstat (limited to 'markdown_extensions/imagelinks.py')
-rw-r--r-- | markdown_extensions/imagelinks.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |