From 310721ddc2705bd7d3a7261432d6d904ec0b3f7b Mon Sep 17 00:00:00 2001 From: Petr Spacek Date: Mon, 22 Dec 2014 23:25:27 +0100 Subject: [PATCH] news: Fix Article.__str__ to print date and TOC thumbnail in the right order. --- src/calibre/web/feeds/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/web/feeds/__init__.py b/src/calibre/web/feeds/__init__.py index d745cd3c94..c44936a479 100644 --- a/src/calibre/web/feeds/__init__.py +++ b/src/calibre/web/feeds/__init__.py @@ -89,7 +89,7 @@ Date : %s TOC thumb : %s Has content : %s '''%(self.title, self.url, self.author, self.summary[:20]+'...', - self.toc_thumbnail, self.localtime.strftime('%a, %d %b, %Y %H:%M'), + self.localtime.strftime('%a, %d %b, %Y %H:%M'), self.toc_thumbnail, bool(self.content))).encode('utf-8') def __str__(self):