1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-07-11 14:30:25 +02:00

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

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