diff options
author | Elias Probst <mail@eliasprobst.eu> | 2014-06-21 00:35:12 +0200 |
---|---|---|
committer | Elias Probst <mail@eliasprobst.eu> | 2014-06-21 00:35:12 +0200 |
commit | a20575e8aeafeb1aaf70243cce96505b661449e9 (patch) | |
tree | 063cf30c37a3bf46be10f66eaf0385249616bc1a /youtube_dl | |
parent | 77245725196717dabd35f4163004a5cfa31db6b5 (diff) |
Make debug message useful and also report, which URL failed to download.
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/spiegel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/spiegel.py b/youtube_dl/extractor/spiegel.py index 9156d7faf..94346daf6 100644 --- a/youtube_dl/extractor/spiegel.py +++ b/youtube_dl/extractor/spiegel.py @@ -36,7 +36,7 @@ class SpiegelIE(InfoExtractor): xml_url = 'http://video2.spiegel.de/flash/' + video_id + '.xml' idoc = self._download_xml( xml_url, video_id, - note='Downloading XML', errnote='Failed to download XML') + note='Downloading XML', errnote='Failed to download XML from "{0}"'.format(xml_url)) formats = [ { |