mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-14 19:55:19 +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
@ -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()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user