mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-23 00:49:59 +00:00
Merge pull request #391 from cclauss/patch-4
Fix AttributeError: module 'os' has no attribute 'mkdirs'.
This commit is contained in:
commit
ca8dcdbca7
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue