Merge pull request #127 from stav/master

scrapy.contrib.spiders.Rule documentation indentation
This commit is contained in:
Daniel Graña 2012-04-30 12:16:45 -07:00
commit 2681be59f7
1 changed files with 4 additions and 4 deletions

View File

@ -262,10 +262,10 @@ Crawling rules
of links extracted from each response using the specified ``link_extractor``.
This is mainly used for filtering purposes.
``process_request`` is a callable, or a string (in which case a method from
the spider object with that name will be used) which will be called with
every request extracted by this rule, and must return a request or None (to
filter out the request).
``process_request`` is a callable, or a string (in which case a method from
the spider object with that name will be used) which will be called with
every request extracted by this rule, and must return a request or None (to
filter out the request).
CrawlSpider example
~~~~~~~~~~~~~~~~~~~