Fix unknown function

The mkdir_p function in the activestate recipe was called _mkdir
This commit is contained in:
Timo Furrer
2017-01-28 11:18:50 +01:00
parent 61d7315eaa
commit 67c5204fad
+1 -1
View File
@@ -23,7 +23,7 @@ def mkdir_p(newdir):
else:
head, tail = os.path.split(newdir)
if head and not os.path.isdir(head):
_mkdir(head)
mkdir_p(head)
if tail:
os.mkdir(newdir)