1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-25 16:04:01 +00:00

added missing colon

This commit is contained in:
Pablo Hoffman 2009-09-12 19:33:16 -03:00
parent 3f30fee6ea
commit 90407d2789

View File

@ -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