Browse Source

fix makedirs on save

pull/60/head
m957ymj75urz 2 years ago
parent
commit
70f9bd1408
  1. 2
      nodes.py

2
nodes.py

@ -809,7 +809,7 @@ class SaveImage:
except ValueError: except ValueError:
counter = 1 counter = 1
except FileNotFoundError: except FileNotFoundError:
os.mkdir(outputDirectory) os.makedirs(outputDirectory, exist_ok=True)
counter = 1 counter = 1
paths = list() paths = list()

Loading…
Cancel
Save