aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-03-13 16:52:13 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-03-13 16:52:13 +0100
commitc3d36f134f6dc3a1b974a8155108ce3f2a6e0a3b (patch)
tree3e318568f9b8fb2dfa4c8eaf05dd64e77ebbfa8c
parent84769e708c81a1600ff24e7140c889fefc4aa6ef (diff)
downloadyoutube-dl-c3d36f134f6dc3a1b974a8155108ce3f2a6e0a3b.tar.xz
[googlesearch] Fix next page indicator check
-rw-r--r--test/test_playlists.py2
-rw-r--r--youtube_dl/extractor/googlesearch.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/test_playlists.py b/test/test_playlists.py
index e74d42264..fbeed1c8c 100644
--- a/test/test_playlists.py
+++ b/test/test_playlists.py
@@ -249,7 +249,7 @@ class TestPlaylists(unittest.TestCase):
self.assertIsPlaylist(result)
self.assertEqual(result['id'], 'python language')
self.assertEqual(result['title'], 'python language')
- self.assertTrue(len(result['entries']) == 15)
+ self.assertEqual(len(result['entries']), 15)
def test_generic_rss_feed(self):
dl = FakeYDL()
diff --git a/youtube_dl/extractor/googlesearch.py b/youtube_dl/extractor/googlesearch.py
index 5c2564270..383032d81 100644
--- a/youtube_dl/extractor/googlesearch.py
+++ b/youtube_dl/extractor/googlesearch.py
@@ -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