This commit is contained in:
Kovid Goyal 2012-05-19 10:34:41 +05:30
parent e054082d9f
commit 01b24803ce

View File

@ -57,6 +57,8 @@ class RescaleImages(object):
try:
img.size = (new_width, new_height)
data = img.export(ext.lower())
except KeyboardInterrupt:
raise
except:
self.log.exception('Failed to rescale image')
else: