aboutsummaryrefslogtreecommitdiffstats
path: root/markdown_extensions
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2008-10-13 22:49:54 -0400
committerWaylan Limberg <waylan@gmail.com>2008-10-13 22:49:54 -0400
commita3bdc580ff5b9b42d486a5eef96bfefff286145e (patch)
treef57e10272f92b9eb46145fe4a345247e61bb7b22 /markdown_extensions
parent430126aa943223f2c3d36fcde77a3a39d6088b4c (diff)
downloadmarkdown-a3bdc580ff5b9b42d486a5eef96bfefff286145e.tar.gz
markdown-a3bdc580ff5b9b42d486a5eef96bfefff286145e.tar.bz2
markdown-a3bdc580ff5b9b42d486a5eef96bfefff286145e.zip
Fixed minor typo in previous commit on ImageLinks extension.
Diffstat (limited to 'markdown_extensions')
-rw-r--r--markdown_extensions/imagelinks.py2
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):