Try to use URL as guid in RSS (possible bugfix?)

This commit is contained in:
Stefan Ritter 2010-04-15 12:17:20 +02:00
parent a4fb72c0e1
commit 1973659923
1 changed files with 2 additions and 1 deletions

View File

@ -317,7 +317,8 @@ elif feed_display == "rss":
print ' <item>'
print ' <title>' + title + '</title>'
print ' <link>' + blog_url + '?p=' + title + '</link>'
print ' <guid>' + title_md5sum + '</guid>'
#print ' <guid>' + title_md5sum + '</guid>'
print ' <guid>' + blog_url + '?p=' + title + '</guid>'
print ' <pubDate>' + date + '</pubDate>'
content = open(str(entries[i][1]), 'r')
rss_description= ''