diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-08-24 01:32:12 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-08-24 01:33:55 +0200 |
commit | eb9da9b732c63309e8592729d3e048953086a308 (patch) | |
tree | c9cfc96fc02e2ab8ba6640faf7101e018679937a /youtube_dl | |
parent | d769be6c96ebca432a076670a0ed4e72aec101c1 (diff) |
[grooveshark] Fix test md5sum
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/grooveshark.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/grooveshark.py b/youtube_dl/extractor/grooveshark.py index 1f2c65afe..7939bc094 100644 --- a/youtube_dl/extractor/grooveshark.py +++ b/youtube_dl/extractor/grooveshark.py @@ -47,7 +47,7 @@ class GroovesharkIE(InfoExtractor): _VALID_URL = r'https?://(www\.)?grooveshark\.com/#!/s/([^/]+)/([^/]+)' _TEST = { 'url': 'http://grooveshark.com/#!/s/Jolene+Tenth+Key+Remix+Ft+Will+Sessions/6SS1DW?src=5', - 'md5': 'bbccc50b19daca23b8f961152c1dc95b', + 'md5': '7ecf8aefa59d6b2098517e1baa530023', 'info_dict': { 'id': '6SS1DW', 'title': 'Jolene (Tenth Key Remix ft. Will Sessions)', @@ -123,7 +123,6 @@ class GroovesharkIE(InfoExtractor): def _get_playerpage(self, target): (_, _, token) = self._parse_target(target) - webpage = self._download_webpage( target, token, note='Downloading player page', |