Python 3
[wolnelektury.git] / src / picture / templatetags / picture_tags.py
index b31405b..973d862 100644 (file)
@@ -55,7 +55,9 @@ 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 Exception, e:
+    except ZeroDivisionError:
+        return ''
+    except Exception as e:
         logging.exception("Error creating a thumbnail for PictureArea")
         return ''