aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rwxr-xr-xsource/feedgetter.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/feedgetter.py b/source/feedgetter.py
index f28308a7..302415f6 100755
--- a/source/feedgetter.py
+++ b/source/feedgetter.py
@@ -127,11 +127,10 @@ class FeedGetter(object):
description = ""
description = str(BeautifulSoup(description))
article_title = str(BeautifulSoup(article.title))
-
try:
- post_date = datetime(*article.updated_parsed[:6])
- except:
post_date = datetime(*article.published_parsed[:6])
+ except:
+ post_date = datetime(*article.updated_parsed[:6])
sha1_hash = hashlib.sha1()
sha1_hash.update(article.link.encode('utf-8'))
bgstack15