Merge pull request #391 from cclauss/patch-4

Fix AttributeError: module 'os' has no attribute 'mkdirs'.
This commit is contained in:
Hardik Zinzuvadiya 2023-07-19 15:48:34 +05:30 committed by GitHub
commit ca8dcdbca7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()