Skip to content

Commit

Permalink
fix mkdirs
Browse files Browse the repository at this point in the history
  • Loading branch information
matthuisman committed Sep 7, 2024
1 parent 8d9eea3 commit 6899358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ def mkdir(path):
return os.mkdir(path)

def mkdirs(path):
return os.makedirs(path)
return os.makedirs(path, exist_ok=True)

def delete(file):
return os.remove(file)
Expand Down

0 comments on commit 6899358

Please sign in to comment.