Changed RFC822 dates

This commit is contained in:
Lars Kiesow 2013-05-14 18:15:58 +02:00
parent f47783cfb0
commit 0a38947252
2 changed files with 3 additions and 3 deletions

View file

@ -191,7 +191,7 @@ class FeedEntry(object):
if self.__rss_pubDate:
pubDate = etree.SubElement(entry, 'pubDate')
pubDate.text = self.__rss_pubDate.strftime(
'%a, %e %b %Y %H:%M:%S %z')
'%a, %d %b %Y %H:%M:%S %z')
if extensions:
for ext in self.__extensions.values() or []:

View file

@ -284,14 +284,14 @@ class FeedGenerator(object):
if self.__rss_lastBuildDate:
lastBuildDate = etree.SubElement(channel, 'lastBuildDate')
lastBuildDate.text = self.__rss_lastBuildDate.strftime(
'%a, %e %b %Y %H:%M:%S %z')
'%a, %d %b %Y %H:%M:%S %z')
if self.__rss_managingEditor:
managingEditor = etree.SubElement(channel, 'managingEditor')
managingEditor.text = self.__rss_managingEditor
if self.__rss_pubDate:
pubDate = etree.SubElement(channel, 'pubDate')
pubDate.text = self.__rss_pubDate.strftime(
'%a, %e %b %Y %H:%M:%S %z')
'%a, %d %b %Y %H:%M:%S %z')
if self.__rss_rating:
rating = etree.SubElement(channel, 'rating')
rating.text = self.__rss_rating