Update scan-feeds so it can find kcr's links.

This commit is contained in:
Nelson Elhage 2010-01-03 11:25:21 -05:00
parent 3ffe5bf622
commit 8c882ab61f
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ def get_link(post):
return links['alternate'].href
if 'href' in post:
return post.href
if 'link' in post:
return post.link
return None
def parse_feeds(weeks, uri):