Fixed issue #126 (feedparser deprecation warning)

This commit is contained in:
David Jean Louis 2014-03-03 20:27:34 +01:00
parent ea17fb072d
commit 1602ba47e6
1 changed files with 1 additions and 1 deletions

View File

@ -720,7 +720,7 @@ class Feed(DashboardModule):
for entry in entries:
entry.url = entry.link
try:
entry.date = datetime.date(*entry.updated_parsed[0:3])
entry.date = datetime.date(*entry.published_parsed[0:3])
except:
# no date for certain feeds
pass