1
0
mirror of https://github.com/gryf/jekyll-rst.git synced 2025-12-19 20:38:06 +01:00

It is "makedirs" not "mkdirs". This typo makes the script output nothing (Python crash => only stderr).

This commit is contained in:
Thomas Pelletier
2012-01-13 18:23:52 +01:00
parent 45350465c7
commit 0ac0cec1f6

View File

@@ -18,7 +18,7 @@ PYGMENTS_CACHE_DIR = os.path.abspath(os.path.join(os.path.dirname(__main__.__fil
# Ensure cache dir exists
if not os.path.exists(PYGMENTS_CACHE_DIR):
os.mkdirs(PYGMENTS_CACHE_DIR)
os.makedirs(PYGMENTS_CACHE_DIR)
from pygments.formatters import HtmlFormatter