aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/treeprocessors.py
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2010-07-05 12:19:46 -0400
committerToshio Kuratomi <toshio@fedoraproject.org>2010-07-05 12:19:46 -0400
commitcf1e33c216b1ea5ce18f660025744d9f8b66fb7c (patch)
treebf30dada8c77312054b84d19b3d36be7dc7c50d9 /markdown/treeprocessors.py
parentd833be68cb7279241996e0f3e9ae3d1162308145 (diff)
downloadmarkdown-cf1e33c216b1ea5ce18f660025744d9f8b66fb7c.tar.gz
markdown-cf1e33c216b1ea5ce18f660025744d9f8b66fb7c.tar.bz2
markdown-cf1e33c216b1ea5ce18f660025744d9f8b66fb7c.zip
Fix for undefined variables that need to be imported
Diffstat (limited to 'markdown/treeprocessors.py')
-rw-r--r--markdown/treeprocessors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/treeprocessors.py b/markdown/treeprocessors.py
index ca3b02b..97073f4 100644
--- a/markdown/treeprocessors.py
+++ b/markdown/treeprocessors.py
@@ -185,7 +185,7 @@ class InlineProcessor(Treeprocessor):
result.append(node)
else: # wrong placeholder
- end = index + len(prefix)
+ end = index + len(self.__placeholder_prefix)
linkText(data[strartIndex:end])
strartIndex = end
else: