From 075986b7df18b02a83c5caf4fd043541dad07dfd Mon Sep 17 00:00:00 2001 From: Eevee Date: Sun, 19 Sep 2010 16:20:05 -0700 Subject: [PATCH 1/1] Crash fix: Stupid typo in RSS code. --- splinext/frontpage/sources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splinext/frontpage/sources.py b/splinext/frontpage/sources.py index 9b70d4b..069b4b6 100644 --- a/splinext/frontpage/sources.py +++ b/splinext/frontpage/sources.py @@ -197,7 +197,7 @@ class FeedSource(CachedSource): len(entry.content[0].value) <= self.SUMMARY_LENGTH: # Full content is short; use as-is! - content = entry.entry.content[0].value + content = entry.content[0].value elif 'content' in entry: # Full content is way too much, especially for my giant blog posts. # Cut this down to some arbitrary number of characters, then feed -- 2.7.4