Change error message -- I think it was Fred that reported this one.
authorAdam Sampson <ats@offog.org>
Sat, 8 Oct 2005 19:55:49 +0000 (19:55 +0000)
committerAdam Sampson <ats@offog.org>
Sat, 8 Oct 2005 19:55:49 +0000 (19:55 +0000)
NEWS
rawdoglib/rawdog.py

diff --git a/NEWS b/NEWS
index fbd65abe70e0c10e8f719ed2e78c3f7330a17ebc..3f1505567ba5a188f6d079e8db1762ddda64cbec 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -40,6 +40,10 @@ under the Python profiler.
 
 Make some minor performance improvements.
 
+Change the "Error parsing feed" message to "Error fetching or parsing
+feed", since it really just indicates an error somewhere within
+feedparser (reported by Fred Barnes).
+
 - rawdog 2.4
 
 Provide guid in item templates (suggested by Rick van Rein).
index 541f0d80efb647ec16780a5fe0b2693994a47bdf..10c83d30cb7acb97ddffba4e8acf01d62d06d2c8 100644 (file)
@@ -319,7 +319,7 @@ class Feed:
                non_fatal = False
                old_url = self.url
                if p is None:
-                       error = "Error parsing feed."
+                       error = "Error fetching or parsing feed."
                elif status is None and len(p["feed"]) == 0:
                        if config["ignoretimeouts"]:
                                return False