aboutsummaryrefslogtreecommitdiffstats
path: root/scanner
diff options
context:
space:
mode:
Diffstat (limited to 'scanner')
-rw-r--r--scanner/PhotoAlbum.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scanner/PhotoAlbum.py b/scanner/PhotoAlbum.py
index 7147fc1..6e209e7 100644
--- a/scanner/PhotoAlbum.py
+++ b/scanner/PhotoAlbum.py
@@ -1,6 +1,7 @@
from CachePath import *
from datetime import datetime
import json
+import os
import os.path
from PIL import Image
from PIL.ExifTags import TAGS
@@ -224,7 +225,8 @@ class Photo(object):
try:
image.save(thumb_path, "JPEG")
except:
- os.path.unlink(thumb_path)
+ print "Could not thumbnail %s" % thumb_path
+ os.unlink(thumb_path)
def _thumbnails(self, image, thumb_path):
mirror = image