From d3704529cb0d2541bdf75efed03a8560cb135c98 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 9 May 2015 09:01:05 +0530 Subject: [PATCH] Fix #1453279 [Typo in magazine feed name (EPW, India) OS X](https://bugs.launchpad.net/calibre/+bug/1453279) --- recipes/epw.recipe | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/recipes/epw.recipe b/recipes/epw.recipe index c3a35f4003..e57014a9d4 100644 --- a/recipes/epw.recipe +++ b/recipes/epw.recipe @@ -4,7 +4,7 @@ __copyright__ = '2014-2015, Karthik , Krittika Goyal' from calibre.web.feeds.news import BasicNewsRecipe class EconomicAndPoliticalWeekly(BasicNewsRecipe): - title = 'Economic and Poitical Weekly' + title = 'Economic and Political Weekly' __author__ = 'Karthik K, Krittika Goyal' description = 'Economic and Political news from India' publisher = 'epw.in' @@ -17,12 +17,11 @@ class EconomicAndPoliticalWeekly(BasicNewsRecipe): encoding = 'utf-8' language = 'en_IN' publication_type = 'newspaper' - #timefmt = '' masthead_url = 'http://www.epw.in/system/files/epw_masthead.png' extra_css = """ body{font-family: Arial,Helvetica,sans-serif} """ - conversion_options = {'comment' : description, + conversion_options = {'comment' : description, 'tags' : category, 'publisher' : publisher, 'language' : language