aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-08-11 06:46:24 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-08-11 06:46:24 +0200
commit298f833b161682ce50250895061285251933351d (patch)
treea5cd741e0da487ff0aefdf1a4ccf27a54bc2ff3b /youtube_dl
parent0f399e6e5e621acff75d1a9dd9195f163bbcfe20 (diff)
downloadyoutube-dl-298f833b161682ce50250895061285251933351d.tar.xz
Note update possibility on errors (thanks @chbrown, #1229)
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 59eeaf4a8..5dd5b2923 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -497,7 +497,7 @@ class ExtractorError(Exception):
if sys.exc_info()[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
expected = True
if not expected:
- msg = msg + u'; please report this issue on https://yt-dl.org/bug . Be sure to call youtube-dl with the --verbose flag and include its complete output.'
+ msg = msg + u'; please report this issue on https://yt-dl.org/bug . Be sure to call youtube-dl with the --verbose flag and include its complete output. Make sure you are using the latest version; type youtube-dl -U to update.'
super(ExtractorError, self).__init__(msg)
self.traceback = tb