From d652ea92b69b4d9d8a2829d0f04eec03238f7f02 Mon Sep 17 00:00:00 2001 From: Holger Schurig Date: Wed, 23 Jun 2010 10:11:48 +0200 Subject: [PATCH] rss_feed.py: the guid isn't a permalink --- plugins/rss_feed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/rss_feed.py b/plugins/rss_feed.py index 71c5411..0681b39 100644 --- a/plugins/rss_feed.py +++ b/plugins/rss_feed.py @@ -50,7 +50,7 @@ def sitemap_scan(params): item = PyRSS2Gen.RSSItem( title = file["title"], link = full_url, - guid = PyRSS2Gen.Guid("%s %s" % (full_url, file["mtime"])), + guid = PyRSS2Gen.Guid("%s %s" % (full_url, file["mtime"]), isPermaLink=0), description = change, pubDate = datetime.datetime.fromtimestamp(file["mtime"], utc), ) -- 2.39.2