diff options
author | Filippo Valsorda <filippo.valsorda@gmail.com> | 2013-06-25 16:43:29 +0200 |
---|---|---|
committer | Filippo Valsorda <filippo.valsorda@gmail.com> | 2013-06-25 16:47:16 +0200 |
commit | 98bcd2834a8652e12914e8b76b871a36be32f0ab (patch) | |
tree | c3dc95ce35f7e000ecad7fbaa63f4ef011202eef /youtube_dl/extractor/common.py | |
parent | f7ab6cbe160afbba60537c7a830a4c65c6f0b3ea (diff) |
improve generic and encrypted signature error messages
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 062f4cf1e..64d63e109 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -211,7 +211,7 @@ class InfoExtractor(object): raise ExtractorError(u'Unable to extract %s' % _name) else: self._downloader.report_warning(u'unable to extract %s; ' - u'please report this issue on GitHub.' % _name) + u'please report this issue on http://yt-dl.org/bug' % _name) return None def _html_search_regex(self, pattern, string, name, default=None, fatal=True, flags=0): |