Don't crash when unable to unlink
This commit is contained in:
parent
148b88951d
commit
54c68be7fd
@ -262,11 +262,17 @@ class Photo(object):
|
||||
try:
|
||||
image.save(thumb_path, "JPEG", quality=88)
|
||||
except KeyboardInterrupt:
|
||||
os.unlink(thumb_path)
|
||||
try:
|
||||
os.unlink(thumb_path)
|
||||
except:
|
||||
pass
|
||||
raise
|
||||
except:
|
||||
message("save failure", os.path.basename(thumb_path))
|
||||
os.unlink(thumb_path)
|
||||
try:
|
||||
os.unlink(thumb_path)
|
||||
except:
|
||||
pass
|
||||
|
||||
def _thumbnails(self, image, thumb_path, original_path):
|
||||
mirror = image
|
||||
|
Loading…
Reference in New Issue
Block a user