Skip to content
Snippets Groups Projects
Unverified Commit ca8dcdbc authored by Hardik Zinzuvadiya's avatar Hardik Zinzuvadiya Committed by GitHub
Browse files

Merge pull request #391 from cclauss/patch-4

Fix AttributeError: module 'os' has no attribute 'mkdirs'.
parents c188fe02 8cd67f7a
Branches
No related tags found
No related merge requests found
......@@ -102,7 +102,7 @@ if __name__ == "__main__":
with open(fpath) as f:
archive = f.readline()
os.mkdirs(archive, exist_ok=True)
os.makedirs(archive, exist_ok=True)
os.chdir(archive)
AllTools().show_options()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment