This commit is contained in:
Ramiro Morales 2015-03-25 18:33:17 -03:00
parent ca2575001e
commit 933dbc6be6
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ But this will::
def some_callback(self, response):
somearg = 'test'
return scrapy.Request('http://www.example.com', , callback=self.other_callback, meta={'somearg': somearg})
return scrapy.Request('http://www.example.com', callback=self.other_callback, meta={'somearg': somearg})
def other_callback(self, response):
somearg = response.meta['somearg']