mirror of https://github.com/scrapy/scrapy.git
temporal fix to avoid exceptions before commit in decobot
--HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40172
This commit is contained in:
parent
5b3662ee89
commit
0f49c7c0d4
|
|
@ -33,6 +33,9 @@ class ExtractAdaptor(ExtendedAdaptor):
|
|||
def function(self, item, location, **pipeargs):
|
||||
return self.do(self.extract, location, **pipeargs)
|
||||
|
||||
def _extract(self, location, **kwargs):
|
||||
return self.extract(location, **kwargs)
|
||||
|
||||
def extract(self, location, **kwargs):
|
||||
"""Extract a list of strings from the location passed.
|
||||
Receives a list of XPathSelectors or an XPathSelector,
|
||||
|
|
|
|||
Loading…
Reference in New Issue