diff options
author | cedricbonhomme <devnull@localhost> | 2010-02-02 09:14:29 +0100 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2010-02-02 09:14:29 +0100 |
commit | 46e2ce90f6d172e9b6c5d05f1863884a62678a68 (patch) | |
tree | 71d1f0bc92770fffd268563c4c7aca785e3de927 /feedgetter.py | |
parent | Bug fix : bad descrition URL in [All articles] pages. (diff) | |
download | newspipe-46e2ce90f6d172e9b6c5d05f1863884a62678a68.tar.gz newspipe-46e2ce90f6d172e9b6c5d05f1863884a62678a68.tar.bz2 newspipe-46e2ce90f6d172e9b6c5d05f1863884a62678a68.zip |
Minor enhancements.
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')) |