1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

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

View File

@ -102,7 +102,7 @@ if __name__ == "__main__":
with open(fpath) as f: with open(fpath) as f:
archive = f.readline() archive = f.readline()
os.mkdirs(archive, exist_ok=True) os.makedirs(archive, exist_ok=True)
os.chdir(archive) os.chdir(archive)
AllTools().show_options() AllTools().show_options()