From f5e36c5b8efd54111ea86b51b88d43f33072c279 Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Fri, 29 Oct 2010 11:45:00 -0400 Subject: [PATCH] Only deactivating feed exceptions. Turning page exceptions back on, since they can now be handled in the UI. --- apps/rss_feeds/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/rss_feeds/models.py b/apps/rss_feeds/models.py index f06caa9d7..766576426 100644 --- a/apps/rss_feeds/models.py +++ b/apps/rss_feeds/models.py @@ -169,9 +169,9 @@ class Feed(models.Model): if len(non_errors) == 0 and len(errors) >= 1: if exception_type == 'feed': self.has_feed_exception = True + self.active = False elif exception_type == 'page': self.has_page_exception = True - self.active = False self.exception_code = status_code self.save() elif self.exception_code > 0: