From: Holger Schurig Date: Wed, 23 Jun 2010 08:11:48 +0000 (+0200) Subject: rss_feed.py: the guid isn't a permalink X-Git-Url: https://oss.titaniummirror.com/gitweb?p=webber.git;a=commitdiff_plain;h=d652ea92b69b4d9d8a2829d0f04eec03238f7f02 rss_feed.py: the guid isn't a permalink --- 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), )