aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-03-06 18:54:32 +0100
committercedricbonhomme <devnull@localhost>2010-03-06 18:54:32 +0100
commitf8996e9871afb1557d8b08f33fa7031baa049746 (patch)
tree478ae1ad21f900619fa02659b22f619ddcf6ce45 /utils.py
parentMinor improvement. Faster display of description page. (diff)
downloadnewspipe-f8996e9871afb1557d8b08f33fa7031baa049746.tar.gz
newspipe-f8996e9871afb1557d8b08f33fa7031baa049746.tar.bz2
newspipe-f8996e9871afb1557d8b08f33fa7031baa049746.zip
Remplaced sha256 by sha1.
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils.py b/utils.py
index c6bbcb0c..012f8bfc 100644
--- a/utils.py
+++ b/utils.py
@@ -154,11 +154,11 @@ def load_feed():
if list_of_articles is not None:
for article in list_of_articles:
- sha256_hash = hashlib.sha256()
- sha256_hash.update(article[5].encode('utf-8'))
- feed_id = sha256_hash.hexdigest()
- sha256_hash.update(article[2].encode('utf-8'))
- article_id = sha256_hash.hexdigest()
+ sha1_hash = hashlib.sha1()
+ sha1_hash.update(article[5].encode('utf-8'))
+ feed_id = sha1_hash.hexdigest()
+ sha1_hash.update(article[2].encode('utf-8'))
+ article_id = sha1_hash.hexdigest()
if article[3] != "":
language = detect_language(remove_html_tags(article[3][:80]).encode('utf-8') + \
bgstack15