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:
olveyra 2008-08-18 15:53:53 +00:00
parent 5b3662ee89
commit 0f49c7c0d4
1 changed files with 3 additions and 0 deletions

View File

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