mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Fix unknown function
The mkdir_p function in the activestate recipe was called _mkdir
This commit is contained in:
+1
-1
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user