Fixed bug in imageconverter exception handling, closes #440

This commit is contained in:
Rhet Turnbull 2021-05-23 14:21:13 -07:00
parent 518f855a9b
commit 186a5b77d0

View File

@ -121,6 +121,6 @@ class ImageConverter:
return True
else:
raise ImageConversionError(
"Error converting file {input_path} to jpeg at {output_path}: {error}"
f"Error converting file {input_path} to jpeg at {output_path}: {error}"
)