From 2e70664c24783e35fa53d03727981cf93d21b6d9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 27 Oct 2011 11:34:30 +0530 Subject: [PATCH] Fix #882380 (update "Novaya Gazeta" recipe) --- recipes/novaya_gazeta.recipe | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/recipes/novaya_gazeta.recipe b/recipes/novaya_gazeta.recipe index 50ce83b130..fb388a07a1 100644 --- a/recipes/novaya_gazeta.recipe +++ b/recipes/novaya_gazeta.recipe @@ -10,9 +10,8 @@ class AdvancedUserRecipe1286819935(BasicNewsRecipe): remove_attributes = ['style'] language = 'ru' - feeds = [(u'Articles', u'http://www.novayagazeta.ru/rss_number.xml')] + feeds = [(u'Articles', u'http://www.novayagazeta.ru/rss/all.xml')] def print_version(self, url): - return url + '?print=true' - + return '%s%s' % (url, '?print=1')