From ee59bd87ab973e47ca3ddaedad76e7eadb18c740 Mon Sep 17 00:00:00 2001 From: Andres Moreira Date: Thu, 14 Aug 2008 12:23:37 +0000 Subject: [PATCH] Changed messages of downloaded respones to received respones. --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40167 --- scrapy/trunk/scrapy/command/commands/replay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/trunk/scrapy/command/commands/replay.py b/scrapy/trunk/scrapy/command/commands/replay.py index a60b180c3..fa81e7c14 100644 --- a/scrapy/trunk/scrapy/command/commands/replay.py +++ b/scrapy/trunk/scrapy/command/commands/replay.py @@ -91,7 +91,7 @@ class Command(ScrapyCommand): s += display.pformat(r) else: s += "\n".join([str(r) for r in self.replay.responses_old.values()]) + "\n" - s += ">>> Total: %d responses downloaded\n" % len(self.replay.responses_old) + s += ">>> Total: %d responses received\n" % len(self.replay.responses_old) return s def action_diff(self, opts):