datetime parsing bug
Downloaded from:
http://web.archive.org/web/
20060215024552/http://www.aaronsw.com/2002/rss2email/rss2email-2.55.py
list
delete n
"""
-__version__ = "2.54"
+__version__ = "2.55"
__author__ = "Aaron Swartz (me@aaronsw.com)"
__copyright__ = "(C) 2004 Aaron Swartz. GNU GPL 2."
___contributors__ = ["Dean Jackson", "Brian Lalor", "Joey Hess",
if DATE_HEADER:
for datetype in DATE_HEADER_ORDER:
kind = datetype+"_parsed"
- if kind in entry: datetime = entry[kind]
+ if kind in entry and entry[kind]: datetime = entry[kind]
content = getContent(entry, HTMLOK=HTML_MAIL)