From 5125cf83e3bc0284bd93db2085e368cb1d00bd42 Mon Sep 17 00:00:00 2001 From: FND Date: Wed, 4 Sep 2013 09:12:57 +0200 Subject: fix typo --- markdown/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.) + try: # New style (markdown.extensions.) module = __import__(module_name, {}, {}, [module_name.rpartition('.')[0]]) except ImportError: module_name_old_style = '_'.join(['mdx', ext_name]) -- cgit v1.2.3