don't compile locale on server
[wolnelektury.git] / src / picture / templatetags / picture_tags.py
index 02d80b0..a766b44 100644 (file)
@@ -18,6 +18,7 @@ register = template.Library()
 
 cropper = CustomCroppingEngine()
 
+
 @register.inclusion_tag('picture/picture_wide.html', takes_context=True)
 def picture_wide(context, picture):
     context.update({
@@ -54,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 ''