diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-08 11:19:12 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-08 11:19:12 +0200 |
| commit | 24fca9eebaa8c7f20d81287e071d54532cc2f407 (patch) | |
| tree | 6468b89d698c75d3e3e5adf5b4f571787457c553 | |
| parent | fb982a1140a67e28f93a1f76bd10da2913466e47 (diff) | |
test...
| -rw-r--r-- | live-mogrify.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/live-mogrify.py b/live-mogrify.py index c58725d..49fe5bc 100644 --- a/live-mogrify.py +++ b/live-mogrify.py @@ -159,6 +159,7 @@ def list_sequences(module): def load_frame(opt, index): A_path = os.path.join(opt.render_dir, "frame_{:05d}.png".format(index)) if not os.path.exists(A_path): + print("path doesn't exist: {}".format(A_path)) return None A_img = Image.open(A_path).convert('RGB') A = self.transform(A_img) |
