diff options
Diffstat (limited to 'feedgetter.py')
-rw-r--r-- | feedgetter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/feedgetter.py b/feedgetter.py index 936a4cd2..8316a200 100644 --- a/feedgetter.py +++ b/feedgetter.py @@ -98,7 +98,7 @@ class FeedGetter(object): try: description = article.description.encode('utf-8') except Exception, e: - description = "No description available." + description = "" sha256_hash = hashlib.sha256() sha256_hash.update(article.link.encode('utf-8')) |