Commit 70f9bd14 authored by m957ymj75urz's avatar m957ymj75urz
Browse files

fix makedirs on save

parent 195d7aec
......@@ -809,7 +809,7 @@ class SaveImage:
except ValueError:
counter = 1
except FileNotFoundError:
os.mkdir(outputDirectory)
os.makedirs(outputDirectory, exist_ok=True)
counter = 1
paths = list()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment