diff options
author | Jesús <heckyel@hyperbola.info> | 2021-06-09 17:35:56 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-06-09 17:35:56 -0500 |
commit | 8e6382a995bb6808020343de0ad4cd091ad43359 (patch) | |
tree | acb8b4277601dee2a5905a7fca660e9bc3bdd014 /youtube_dl/utils.py | |
parent | ff87b367dce059d04f3f1dc11000553a065f8f0f (diff) | |
download | hypervideo-pre-8e6382a995bb6808020343de0ad4cd091ad43359.tar.lz hypervideo-pre-8e6382a995bb6808020343de0ad4cd091ad43359.tar.xz hypervideo-pre-8e6382a995bb6808020343de0ad4cd091ad43359.zip |
[utils.py]: Fix command update
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index e722eed58..cb3cfcc17 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -2318,7 +2318,7 @@ def make_HTTPS_handler(params, **kwargs): def bug_reports_message(): if ytdl_is_updateable(): - update_cmd = 'type youtube-dl -U to update' + update_cmd = 'type doas pacman -Sy hypervideo to update' else: update_cmd = 'see https://yt-dl.org/update on how to update' msg = '; please report this issue on https://yt-dl.org/bug .' |