Add rss2email v2.62 v2.62
authorLindsey Smith <lindsey.smith@gmail.com>
Mon, 14 Jan 2008 12:00:00 +0000 (12:00 +0000)
committerW. Trevor King <wking@tremily.us>
Fri, 15 Feb 2013 17:51:14 +0000 (12:51 -0500)
Bug-fix version:
* Simplified SunOS fix
* Local feeds (/home/user/file.xml) should work

Downloaded from:

  http://web.archive.org/web/20080228225122/http://rss2email.infogami.com/rss2email.py

and filtered through dos2unix.

rss2email.py

index c81c226ebeaf926d48acc1ec0cbdb676d52c3df5..a5affdf3998a74a6e4b760e16b053f051c065926 100644 (file)
@@ -10,7 +10,7 @@ Usage:
   list
   delete n
 """
-__version__ = "2.61"
+__version__ = "2.62"
 __author__ = "Aaron Swartz (me@aaronsw.com)"
 __copyright__ = "(C) 2004 Aaron Swartz. GNU GPL 2."
 ___contributors__ = ["Dean Jackson", "Brian Lalor", "Joey Hess", 
@@ -218,8 +218,7 @@ import cPickle as pickle, md5, time, os, traceback, urllib2, sys, types
 unix = 0
 try:
        import fcntl
-       if sys.version.find('sunos') == -1:
-               unix = 1
+       unix = 1
 except:
        pass
                
@@ -351,7 +350,7 @@ def getName(r, entry):
        """Get the best name."""
 
        feed = r.feed
-       if r.url in OVERRIDE_FROM.keys():
+       if hasattr(r, "url") and r.url in OVERRIDE_FROM.keys():
                return OVERRIDE_FROM[r.url]
        
        name = feed.get('title', '')