From 0ac0cec1f67119d354b97cb4a358b506b5791b34 Mon Sep 17 00:00:00 2001 From: Thomas Pelletier Date: Fri, 13 Jan 2012 18:23:52 +0100 Subject: [PATCH] It is "makedirs" not "mkdirs". This typo makes the script output nothing (Python crash => only stderr). --- directives.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/directives.py b/directives.py index de3dbf6..bfd2b78 100644 --- a/directives.py +++ b/directives.py @@ -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