aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/treeprocessors.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2010-07-06 16:30:11 -0400
committerWaylan Limberg <waylan@gmail.com>2010-07-06 16:30:11 -0400
commit018aa73e82941288a1178ded751cf29d9bc13581 (patch)
tree38a87c7f51eddf389fb0455c112e7bbb6bbf448a /markdown/treeprocessors.py
parent03bf339b594db40592d3a4848ec1e5402a371df2 (diff)
downloadmarkdown-018aa73e82941288a1178ded751cf29d9bc13581.tar.gz
markdown-018aa73e82941288a1178ded751cf29d9bc13581.tar.bz2
markdown-018aa73e82941288a1178ded751cf29d9bc13581.zip
Moved a bunch of global variables to the instance of the Markdown class.
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 b33472e..6aeb142 100644
--- a/markdown/treeprocessors.py
+++ b/markdown/treeprocessors.py
@@ -277,7 +277,7 @@ class InlineProcessor(Treeprocessor):
if child.getchildren():
stack.append(child)
- if util.ENABLE_ATTRIBUTES:
+ if self.markdown.ENABLE_ATTRIBUTES:
for element, lst in insertQueue:
if element.text:
element.text = \