Skip to content

Commit

Permalink
Merge pull request Python-Markdown#246 from FND/patch-1
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
Waylan Limberg committed Sep 5, 2013
2 parents 7850601 + 5125cf8 commit 07b4dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markdown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def build_extension(self, ext_name, configs = []):
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])
Expand Down

0 comments on commit 07b4dca

Please sign in to comment.