X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b2d342589a7889a3b096e7192453d53bd28eed7d..d8dd5e33408239d7fb7b0e14199de1a8341b9858:/src/picture/templatetags/picture_tags.py diff --git a/src/picture/templatetags/picture_tags.py b/src/picture/templatetags/picture_tags.py index b31405b8d..a766b44d9 100644 --- a/src/picture/templatetags/picture_tags.py +++ b/src/picture/templatetags/picture_tags.py @@ -55,6 +55,8 @@ def area_thumbnail_url(area, geometry): area.picture.image_file, geometry, crop="%dpx %dpx %dpx %dpx" % tuple(map(lambda d: max(0, d), tuple(coords[0] + coords[1])))) + except ZeroDivisionError: + return '' except Exception, e: logging.exception("Error creating a thumbnail for PictureArea") return ''