diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-03-20 08:50:08 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-03-20 09:34:52 +0530 |
commit | beb4b92a66d828816100f34ba77cba76e92e06ea (patch) | |
tree | e23a1b9fb995710c9a2eed88e516af6928dd67f4 /yt_dlp/downloader/rtmp.py | |
parent | cd9b384cc338da6ce43a66ed392ce995ea73eb35 (diff) | |
download | hypervideo-pre-beb4b92a66d828816100f34ba77cba76e92e06ea.tar.lz hypervideo-pre-beb4b92a66d828816100f34ba77cba76e92e06ea.tar.xz hypervideo-pre-beb4b92a66d828816100f34ba77cba76e92e06ea.zip |
More consistent warning messages (#173)
Co-authored by: Damiano Amatruda <damiano.amatruda@outlook.com>
Diffstat (limited to 'yt_dlp/downloader/rtmp.py')
-rw-r--r-- | yt_dlp/downloader/rtmp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/downloader/rtmp.py b/yt_dlp/downloader/rtmp.py index 8a25dbc8d..99158e621 100644 --- a/yt_dlp/downloader/rtmp.py +++ b/yt_dlp/downloader/rtmp.py @@ -117,7 +117,7 @@ class RtmpFD(FileDownloader): # Check for rtmpdump first if not check_executable('rtmpdump', ['-h']): - self.report_error('RTMP download detected but "rtmpdump" could not be run. Please install it.') + self.report_error('RTMP download detected but "rtmpdump" could not be run. Please install') return False # Download using rtmpdump. rtmpdump returns exit code 2 when |