aboutsummaryrefslogtreecommitdiffstats
path: root/markdown.py
diff options
context:
space:
mode:
Diffstat (limited to 'markdown.py')
-rwxr-xr-xmarkdown.py19
1 files changed, 8 insertions, 11 deletions
diff --git a/markdown.py b/markdown.py
index f4536a2..baf6567 100755
--- a/markdown.py
+++ b/markdown.py
@@ -2096,19 +2096,16 @@ def load_extension(ext_name, configs = []):
try: # Old style (mdx.<extension>)
module = __import__(module_name_old_style)
except ImportError:
- pass
-
- if module :
- # If the module is loaded successfully, we expect it to define a
- # function called makeExtension()
- try:
- return module.makeExtension(configs.items())
- except:
- message(CRITICAL, "Failed to instantiate extension '%s'" % ext_name)
- else:
- message(CRITICAL, "Failed loading extension '%s' from '%s' or '%s'"
+ message(CRITICAL, "Failed loading extension '%s' from '%s' or '%s'"
% (ext_name, module_name_new_style, module_name_old_style))
+ # If the module is loaded successfully, we expect it to define a
+ # function called makeExtension()
+ try:
+ return module.makeExtension(configs.items())
+ except:
+ message(CRITICAL, "Failed to instantiate extension '%s'" % ext_name)
+
def load_extensions(ext_names):
"""Loads multiple extensions"""
extensions = []