From 4599893f3548d56769bd43c6a6678a8b0b435b6b Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Sun, 14 Dec 2008 04:32:01 +0000 Subject: [PATCH] fixed bug in DownloaderStats middleware --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40491 --- scrapy/trunk/scrapy/contrib/downloadermiddleware/stats.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scrapy/trunk/scrapy/contrib/downloadermiddleware/stats.py b/scrapy/trunk/scrapy/contrib/downloadermiddleware/stats.py index 9fe0b866a..9598cc463 100644 --- a/scrapy/trunk/scrapy/contrib/downloadermiddleware/stats.py +++ b/scrapy/trunk/scrapy/contrib/downloadermiddleware/stats.py @@ -38,7 +38,6 @@ class DownloaderStats(object): stats.incpath('%s/downloader/exception_type_count/%s' % (spider.domain_name, ex_class)) if isinstance(exception, HttpException): self._inc_response_count(exception.response, spider.domain_name) - raise exception def _inc_response_count(self, response, domain): stats.incpath('_global/downloader/response_count')