Month format

main
Bob Mottram 2020-02-29 10:06:16 +00:00
parent b14d717c73
commit 20327f6ebf
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ def htmlBlogPostRSS(authorized: bool, \
rssStr= ' <item>' rssStr= ' <item>'
rssStr+=' <title>'+titleStr+'</title>' rssStr+=' <title>'+titleStr+'</title>'
rssStr+=' <link>'+messageLink+'</link>' rssStr+=' <link>'+messageLink+'</link>'
rssStr+=' <pubDate>'+pubDate.strftime("%a, %d %M %Y %H:%M:%S UT")+'</pubDate>' rssStr+=' <pubDate>'+pubDate.strftime("%a, %d %b %Y %H:%M:%S UT")+'</pubDate>'
rssStr+=' </item>' rssStr+=' </item>'
return rssStr return rssStr