From 9350cec1460177e047a97ec1ca137b7daeed5aea Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 12 Nov 2010 08:11:40 -0700 Subject: [PATCH] Fix #7513 (Updated Recipe "Gamespot Review") --- resources/recipes/gamespot.recipe | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/recipes/gamespot.recipe b/resources/recipes/gamespot.recipe index d9a5f20c23..cfa7b0ebe8 100644 --- a/resources/recipes/gamespot.recipe +++ b/resources/recipes/gamespot.recipe @@ -1,5 +1,5 @@ __license__ = 'GPL v3' -__author__ = u'Marc T\xf6nsing' +__author__ = u'Marc Toensing' from calibre.web.feeds.news import BasicNewsRecipe @@ -17,6 +17,7 @@ class GamespotCom(BasicNewsRecipe): no_javascript = True feeds = [ + ('All Reviews', 'http://www.gamespot.com/rss/game_updates.php?type=5'), ('PC Reviews', 'http://www.gamespot.com/rss/game_updates.php?type=5&platform=5'), ('XBOX 360 Reviews', 'http://www.gamespot.com/rss/game_updates.php?type=5&platform=1029'), ('Wii Reviews', 'http://www.gamespot.com/rss/game_updates.php?type=5&platform=1031'), @@ -37,5 +38,3 @@ class GamespotCom(BasicNewsRecipe): def get_article_url(self, article): return article.get('link') + '?print=1' - -