Skip to content

Commit

Permalink
Merge pull request #391 from cclauss/patch-4
Browse files Browse the repository at this point in the history
Fix AttributeError: module 'os' has no attribute 'mkdirs'.
  • Loading branch information
Z4nzu committed Jul 19, 2023
2 parents c188fe0 + 8cd67f7 commit ca8dcdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hackingtool.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def show_info(self):

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

Expand Down

0 comments on commit ca8dcdb

Please sign in to comment.