Commit 855f83f9 authored by AUTOMATIC1111's avatar AUTOMATIC1111 Committed by GitHub

Merge pull request #10041 from AUTOMATIC1111/print-exception-#9219

print PIL.UnidentifiedImageError
parents d1d7dd2a 14e55a33
...@@ -48,7 +48,8 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args): ...@@ -48,7 +48,8 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args):
try: try:
img = Image.open(image) img = Image.open(image)
except UnidentifiedImageError: except UnidentifiedImageError as e:
print(e)
continue continue
# Use the EXIF orientation of photos taken by smartphones. # Use the EXIF orientation of photos taken by smartphones.
img = ImageOps.exif_transpose(img) img = ImageOps.exif_transpose(img)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment