From 68a1f42e34c4bdddf87853b346e10e592d38e237 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sat, 7 May 2011 07:42:34 -0400 Subject: Final tweeks. --- scanner/PhotoAlbum.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scanner') 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 -- cgit v1.2.3-59-g8ed1b