mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 14:04:12 +02:00
Update The Walrun Magazine
This commit is contained in:
parent
f535aa7722
commit
474dbd9be2
1 changed files with 7 additions and 1 deletions
|
|
@ -10,4 +10,10 @@ class AdvancedUserRecipe1371743239(BasicNewsRecipe):
|
|||
max_articles_per_feed = 100
|
||||
auto_cleanup = True
|
||||
|
||||
feeds = [(u'The Walrus Mag', u'http://thewalrus.ca/feed/')]
|
||||
feeds = [(u'The Walrus Mag', u'https://thewalrus.ca/feed/')]
|
||||
|
||||
def get_article_url(self, article):
|
||||
ans = BasicNewsRecipe.get_article_url(self, article)
|
||||
if ans and ans.startswith('/'):
|
||||
ans = 'https://thewalrus.ca' + ans
|
||||
return ans
|
||||
|
|
|
|||
Loading…
Reference in a new issue