diff --git a/proxy.py b/proxy.py index db70dc3..dd13c01 100755 --- a/proxy.py +++ b/proxy.py @@ -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)