From 90407d2789386a12a201de39f7415e51bda100d9 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Sat, 12 Sep 2009 19:33:16 -0300 Subject: [PATCH] added missing colon --- scrapy/crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/crawler.py b/scrapy/crawler.py index cf1a2bbdf..e793d9125 100644 --- a/scrapy/crawler.py +++ b/scrapy/crawler.py @@ -15,7 +15,7 @@ requests. For example: >>> request = Request('http://scrapy.org', callback=parse_response) >>> crawler = Crawler() >>> crawler.crawl(request) - Visited http://scrapy.org + Visited: http://scrapy.org >>> Request callbacks follow the same API of spiders callback, which means that all