diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-08 11:29:43 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-08 11:29:43 +0200 |
| commit | 782d22b6ee3f40d91055d15cc6d6c8d499ff45f0 (patch) | |
| tree | 20572d5cceabea26d71b5e715f94baf9540ed84a /live-mogrify.py | |
| parent | 2fb9e8cda98455b4e9078ff25f655b0597ddafbe (diff) | |
fix
Diffstat (limited to 'live-mogrify.py')
| -rw-r--r-- | live-mogrify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/live-mogrify.py b/live-mogrify.py index f4200a3..6817fd7 100644 --- a/live-mogrify.py +++ b/live-mogrify.py @@ -191,7 +191,7 @@ def load_frame(opt, index): print("path doesn't exist: {}".format(A_path)) return None transform = get_transform() - A = Image.open(A_path).convert('RGB') + A_img = Image.open(A_path).convert('RGB') A = transform(A_img) # if self.opt.which_direction == 'BtoA': # input_nc = self.opt.output_nc |
