From 40fbd4944279b2fa0f110abb533e53676f04add7 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 6 May 2011 07:58:11 -0400 Subject: [PATCH] Do 800 too. --- scanner/PhotoAlbum.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scanner/PhotoAlbum.py b/scanner/PhotoAlbum.py index b5c6377..514cf23 100644 --- a/scanner/PhotoAlbum.py +++ b/scanner/PhotoAlbum.py @@ -87,7 +87,7 @@ class Album(object): return None class Photo(object): - thumb_sizes = [ (150, True), (640, False), (1024, False) ] + thumb_sizes = [ (150, True), (640, False), (800, False), (1024, False) ] def __init__(self, path, thumb_path=None, attributes=None): self._path = trim_base(path) self.is_valid = True @@ -236,4 +236,4 @@ class PhotoAlbumEncoder(json.JSONEncoder): if isinstance(obj, Album) or isinstance(obj, Photo): return obj.to_dict() return json.JSONEncoder.default(self, obj) - \ No newline at end of file +