feed: use hashlib.sha1 for fallback IDs in Feed._get_entry_id
authorW. Trevor King <wking@tremily.us>
Tue, 11 Dec 2012 01:00:35 +0000 (20:00 -0500)
committerW. Trevor King <wking@tremily.us>
Tue, 11 Dec 2012 01:06:01 +0000 (20:06 -0500)
commit0a947fc43bbea1415694a58036e738f1680e3355
treec51412522a19c6c699221cd61fe8f6fb16991399
parentb20592ad495f18f9eb968c90a550f13f6bf8f3bc
feed: use hashlib.sha1 for fallback IDs in Feed._get_entry_id

This fixes what I broke in

  commit 0fc2ff4465d741823b3dceebcfcf3a98a0081522
  Author: W. Trevor King <wking@tremily.us>
  Date:   Thu Oct 4 08:33:32 2012 -0400

    Cleanup global module configuration.

  diff --git a/rss2email.py b/rss2email.py
  index 216c13d..3919bd7 100755
  --- a/rss2email.py
  +++ b/rss2email.py
  ...
  -hash = hashlib.md5
  ...

I've come back with sha1 instead of md5, mostly because that's what
Git uses ;).  We don't migrate recorded IDs from the old configuration
method, so the change from md5 to sha1 shouldn't affect anyone.

Signed-off-by: W. Trevor King <wking@tremily.us>
rss2email/feed.py