diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-03-20 16:33:42 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-03-20 16:33:46 +0100 | 
| commit | 1a4895453a82e72cb34868cddf76a20829eec95c (patch) | |
| tree | d3d31646f72ca0557d28b57becebf9faa0273aa1 | |
| parent | aab74fa10655213c24c6f38a5b0c6b18049e737a (diff) | |
[YoutubeDL] Improve error message
| -rw-r--r-- | youtube_dl/YoutubeDL.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 5095f87d2..983c00a6a 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -533,7 +533,7 @@ class YoutubeDL(object):                  else:                      raise          else: -            self.report_error('no suitable InfoExtractor: %s' % url) +            self.report_error('no suitable InfoExtractor for URL %s' % url)      def process_ie_result(self, ie_result, download=True, extra_info={}):          """  | 
