summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2019-01-09 23:27:19 +0100
committerJules Laplace <julescarbon@gmail.com>2019-01-09 23:27:19 +0100
commitb024f2c21a62990723bdb6768c7ea6bad202be82 (patch)
tree517df99bd05ac3dca9cad23c466c0923691abea1 /test.py
parentd2cee907fb43450250b9b9f90c8d90468627122e (diff)
fix
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 db11ee5..80c1a81 100644
--- a/test.py
+++ b/test.py
@@ -50,7 +50,7 @@ def process_dir(dir):
os.makedirs(out_path, exist_ok=True)
os.makedirs(render_path, exist_ok=True)
- dir_frames = sorted(glob.glob(os.path.join(dir + '*.png')))
+ dir_frames = sorted(glob.glob(os.path.join(dir, '*.png')))
print(dir_frames)
frames = []