summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2019-01-09 16:36:49 +0100
committerJules Laplace <julescarbon@gmail.com>2019-01-09 16:36:49 +0100
commit7e67f6393cf0bf32b372f2fadf0770a1f78c7837 (patch)
treed5bcd60982dedc2eeeeb852e1a48f9f88c76e85b /test.py
parenta7a8b0bff13806327cd73576f1bd5eca5d910af2 (diff)
makedirs
Diffstat (limited to 'test.py')
-rw-r--r--test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.py b/test.py
index ae80d08..d89f2e2 100644
--- a/test.py
+++ b/test.py
@@ -39,7 +39,7 @@ if not(args.T == 'L' or args.T =='G'):
def process_dir(v, scene_name=None):
if scene_name is None:
scene_name = v.split('/')[-1]
- os.mkdir('./results/{}L/L/{}/'.format(args.L, scene_name))
+ os.makedirs('./results/{}L/L/{}/'.format(args.L, scene_name))
dir_frames = glob.glob(v + '/*.png')
dir_frames.sort()