diff options
author | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-06-05 20:36:39 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-06-05 20:36:39 +0200 |
commit | cabe4fc331ba7fb4aea0264de87d4a74f9d65838 (patch) | |
tree | 7621e2a26a9fea9f2e0dd7bdcf7544d228c891c0 /blogthon.cgi | |
parent | aa2c6ca34766ad395484087f2225135348478c9b (diff) |
Feed bugfix
Diffstat (limited to '')
-rwxr-xr-x | blogthon.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 56d1cf3..3c2df99 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -227,7 +227,7 @@ if feed_display == "atom": print '</feed>' # Generate rss 2.0 feed -if feed_display == "rss": +elif feed_display == "rss": title = str(entries[0][1]).replace('entries/', '', 1).replace('.' + entries_suffix, '') date = entries[0][0] blog_title_md5sum = generate_uuid(blog_title) |