aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--becommands/html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/html.py b/becommands/html.py
index d1bd625..b0640da 100644
--- a/becommands/html.py
+++ b/becommands/html.py
@@ -304,7 +304,7 @@ class HTMLGen (object):
dir_path = os.path.abspath(os.path.expanduser(dir_path))
if not os.path.exists(dir_path):
try:
- os.mkdir(dir_path)
+ os.makedirs(dir_path)
except:
raise cmdutil.UsageError, "Cannot create output directory '%s'." % dir_path
return dir_path