aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--markdown/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py
index 275ed2e..6bfef4f 100644
--- a/markdown/__init__.py
+++ b/markdown/__init__.py
@@ -193,7 +193,7 @@ class Markdown(object):
module_name = '.'.join(['markdown.extensions', ext_name])
# Try loading the extension first from one place, then another
- try: # New style (markdown.extensons.<extension>)
+ try: # New style (markdown.extensions.<extension>)
module = __import__(module_name, {}, {}, [module_name.rpartition('.')[0]])
except ImportError:
module_name_old_style = '_'.join(['mdx', ext_name])