From b03808180458b5ecd151f04102c33cf009162214 Mon Sep 17 00:00:00 2001 From: Sanj Date: Sun, 18 Mar 2012 11:42:41 +0530 Subject: [PATCH] image sizing on erang --- itf/emailer/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itf/emailer/models.py b/itf/emailer/models.py index 87807c1..d2c4843 100755 --- a/itf/emailer/models.py +++ b/itf/emailer/models.py @@ -77,7 +77,7 @@ class ArticleImage(models.Model): return get_thumbnail(self.image, size).url def getHTML(self, typ): - thumb = self.getThumbPath("x380") + thumb = self.getThumbPath("450x380") caption = self.caption return "


%s

" % (caption, thumb, caption) # return "" % (caption, thumb,)