diff --git a/feeds/modules/tapas.py b/feeds/modules/tapas.py index 3e36946..92a87a4 100644 --- a/feeds/modules/tapas.py +++ b/feeds/modules/tapas.py @@ -61,7 +61,7 @@ class TapasFeedModuleConfig(FeedModuleConfig): ims.append(Image.open(img_path)) widths, heights = zip(*(i.size for i in ims)) max_width = max(widths) - total_height = max(heights) + total_height = sum(heights) new_im = Image.new('RGB', (max_width, total_height)) offset = 0 for im in ims: