youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 7932de6352f1fcb0418e78dc049fe60b92ca6c68
parent bb6e38787dcc3593a4d9cb66bcf9f736570e944a
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 22 Jan 2015 18:15:04 +0100

[hearthisat] Correct error message

Diffstat:
Myoutube_dl/extractor/hearthisat.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/hearthisat.py b/youtube_dl/extractor/hearthisat.py @@ -75,7 +75,7 @@ class HearThisAtIE(InfoExtractor): formats = [] mp3_url = self._search_regex( r'(?s)<a class="player-link"\s+(?:[a-zA-Z0-9_:-]+="[^"]+"\s+)*?data-mp3="([^"]+)"', - webpage, 'title', fatal=False) + webpage, 'mp3 URL', fatal=False) if mp3_url: formats.append({ 'format_id': 'mp3',