1
0
mirror of https://github.com/gryf/jekyll-rst.git synced 2026-03-16 22:53:39 +01:00

Merge pull request #1 from pelletier/patch-1

Makedirs instead of mkdirs
This commit is contained in:
Greg Thornton
2012-01-14 14:27:57 -08:00

View File

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