Skip to content

Commit dd964d6

Browse files
author
Greg Turnquist
committed
Fix os.mkdir to os.makedirs
1 parent cfd6e11 commit dd964d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def create_pydocs():
396396
import springpython
397397

398398
if not os.path.exists("target/docs/pydoc"):
399-
os.mkdir("target/docs/pydoc")
399+
os.makedirs("target/docs/pydoc")
400400

401401
cur = os.getcwd()
402402
os.chdir("target/docs/pydoc")

0 commit comments

Comments
 (0)