[googlesearch] Fix next page indicator check

This commit is contained in:
Philipp Hagemeister 2014-03-13 16:52:13 +01:00
parent 84769e708c
commit c3d36f134f
2 changed files with 2 additions and 2 deletions

View file

@ -46,6 +46,6 @@ class GoogleSearchIE(SearchInfoExtractor):
'url': mobj.group(1)
})
if (len(entries) >= n) or not re.search(r'class="pn" id="pnnext"', webpage):
if (len(entries) >= n) or not re.search(r'id="pnnext"', webpage):
res['entries'] = entries[:n]
return res