未验证 提交 855f83f9 编写于 作者: A AUTOMATIC1111 提交者: GitHub

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

print PIL.UnidentifiedImageError
......@@ -48,7 +48,8 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args):
try:
img = Image.open(image)
except UnidentifiedImageError:
except UnidentifiedImageError as e:
print(e)
continue
# Use the EXIF orientation of photos taken by smartphones.
img = ImageOps.exif_transpose(img)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册