Style fixes for extractors: remove spaces around (,),{ and }
This commit is contained in:
parent
fa5d47af4b
commit
a56f9de156
13 changed files with 33 additions and 33 deletions
|
@ -132,7 +132,7 @@ class YahooSearchIE(SearchInfoExtractor):
|
|||
mobj = re.search(r'(?P<url>screen\.yahoo\.com/.*?-\d*?\.html)"', r)
|
||||
e = self.url_result('http://' + mobj.group('url'), 'Yahoo')
|
||||
res['entries'].append(e)
|
||||
if (pagenum * 30 +i >= n) or (m[u'last'] >= (m[u'total'] -1 )):
|
||||
if (pagenum * 30 +i >= n) or (m[u'last'] >= (m[u'total'] -1)):
|
||||
break
|
||||
|
||||
return res
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue