From 68993583ebdb3f22453e4ea2e54dabaf062934d3 Mon Sep 17 00:00:00 2001 From: matthuisman Date: Sun, 8 Sep 2024 11:13:04 +1200 Subject: [PATCH] fix mkdirs --- proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)