diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index ddf375c6c..286403824 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -68,7 +68,7 @@ class VimeoBaseInfoExtractor(InfoExtractor): except ExtractorError as e: if isinstance(e.cause, compat_HTTPError) and e.cause.code == 418: raise ExtractorError( - 'Unable to log in: bad username or password', + 'Unable to log in: bad username or password, use the --video-password option for password protected videos', expected=True) raise ExtractorError('Unable to log in')