diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-04-09 11:12:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 16:12:26 +0000 |
commit | 216f6a3cb57824e6a3c859649ce058c199b1b247 (patch) | |
tree | 6e784d1cf0fae41c3a4986290e1eb6418bfc479b /yt_dlp/update.py | |
parent | b19ae095fdddd43c2a2c67d10fbe0d9a645bb98f (diff) |
[cleanup] Misc (#9426)
Authored by: bashonly, pukkandan
Diffstat (limited to 'yt_dlp/update.py')
-rw-r--r-- | yt_dlp/update.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/update.py b/yt_dlp/update.py index db50cfa6b..f47cbc5b2 100644 --- a/yt_dlp/update.py +++ b/yt_dlp/update.py @@ -114,7 +114,7 @@ _NON_UPDATEABLE_REASONS = { **{variant: f'Auto-update is not supported for unpackaged {name} executable; Re-download the latest release' for variant, name in {'win32_dir': 'Windows', 'darwin_dir': 'MacOS', 'linux_dir': 'Linux'}.items()}, 'source': 'You cannot update when running from source code; Use git to pull the latest changes', - 'unknown': 'You installed yt-dlp with a package manager or setup.py; Use that to update', + 'unknown': 'You installed yt-dlp from a manual build or with a package manager; Use that to update', 'other': 'You are using an unofficial build of yt-dlp; Build the executable again', } |