summaryrefslogtreecommitdiff
path: root/markdown/extensions/smarty.py
diff options
context:
space:
mode:
Diffstat (limited to 'markdown/extensions/smarty.py')
-rw-r--r--markdown/extensions/smarty.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/markdown/extensions/smarty.py b/markdown/extensions/smarty.py
index 894805f..c4bfd58 100644
--- a/markdown/extensions/smarty.py
+++ b/markdown/extensions/smarty.py
@@ -83,7 +83,7 @@ smartypants.py license:
from . import Extension
from ..inlinepatterns import HtmlInlineProcessor, HTML_RE
from ..treeprocessors import InlineProcessor
-from ..util import Registry, deprecated
+from ..util import Registry
# Constants for quote education.
@@ -155,12 +155,6 @@ class SubstituteTextPattern(HtmlInlineProcessor):
self.replace = replace
self.md = md
- @property
- @deprecated("Use 'md' instead.")
- def markdown(self):
- # TODO: remove this later
- return self.md
-
def handleMatch(self, m, data):
result = ''
for part in self.replace: