mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[update] fix error
This commit is contained in:
parent
38b2db6a66
commit
2e767313e4
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ def update_self(to_screen, verbose):
|
|||
|
||||
def version_tuple(version_str):
|
||||
return tuple(map(int, version_str.split('.')))
|
||||
if version_tuple(__version__) >= version_tuple(version_str):
|
||||
if version_tuple(__version__) >= version_tuple(version_id):
|
||||
to_screen(u'youtube-dl is up to date (%s)' % __version__)
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in a new issue