summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-01-22 18:15:04 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-01-22 18:15:04 +0100
commit7932de6352f1fcb0418e78dc049fe60b92ca6c68 (patch)
treef3c2c2ce974125cc9fa066d0719a728892155849
parentbb6e38787dcc3593a4d9cb66bcf9f736570e944a (diff)
downloadyoutube-dl-7932de6352f1fcb0418e78dc049fe60b92ca6c68.tar.gz
youtube-dl-7932de6352f1fcb0418e78dc049fe60b92ca6c68.tar.xz
youtube-dl-7932de6352f1fcb0418e78dc049fe60b92ca6c68.zip
[hearthisat] Correct error message
-rw-r--r--youtube_dl/extractor/hearthisat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/hearthisat.py b/youtube_dl/extractor/hearthisat.py
index d83072c1a..a19b31ac0 100644
--- 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',