diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-12-01 05:46:15 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-12-01 05:46:15 +0530 |
commit | 91f071af60829f55c8e53b1c7d12dfd0bab71ddf (patch) | |
tree | be888e29d8cf2482e747e64f172ccf05e3fa52d2 /yt_dlp/update.py | |
parent | 2aa5e2cc01b89a88eab2a6cfaee871e9addaf6a9 (diff) | |
download | hypervideo-pre-91f071af60829f55c8e53b1c7d12dfd0bab71ddf.tar.lz hypervideo-pre-91f071af60829f55c8e53b1c7d12dfd0bab71ddf.tar.xz hypervideo-pre-91f071af60829f55c8e53b1c7d12dfd0bab71ddf.zip |
Release 2021.12.01
Diffstat (limited to 'yt_dlp/update.py')
-rw-r--r-- | yt_dlp/update.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/update.py b/yt_dlp/update.py index aebd5d1e1..116816037 100644 --- a/yt_dlp/update.py +++ b/yt_dlp/update.py @@ -109,14 +109,13 @@ def run_update(ydl): err = is_non_updateable() if err: - ydl.to_screen(f'Latest version: {version_id}, Current version: {__version__}') return report_error(err, True) # sys.executable is set to the full pathname of the exe-file for py2exe # though symlinks are not followed so that we need to do this manually # with help of realpath filename = compat_realpath(sys.executable if hasattr(sys, 'frozen') else sys.argv[0]) - ydl.to_screen(f'Current version {__version__}; Build Hash {calc_sha256sum(filename)}') + ydl.to_screen(f'Current Build Hash {calc_sha256sum(filename)}') ydl.to_screen(f'Updating to version {version_id} ...') version_labels = { |