Typo makedirs()!!!

Fixes #390
This commit is contained in:
Christian Clauss 2023-07-18 14:21:52 +02:00 committed by GitHub
parent c188fe0235
commit 8cd67f7a8e
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()