summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmakesite.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/makesite.py b/makesite.py
index 7ae80fe..bb97abc 100755
--- a/makesite.py
+++ b/makesite.py
@@ -102,8 +102,8 @@ def read_content(filename):
try:
if _test == 'ImportError':
raise ImportError('Error forced by test')
- import CommonMark
- text = CommonMark.commonmark(text)
+ import commonmark
+ text = commonmark.commonmark(text)
except ImportError as e:
log('WARNING: Cannot render Markdown in {}: {}', filename, str(e))