1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-08-15 00:48:28 +00:00

Use UTC time

This commit is contained in:
sepro 2025-08-05 22:43:54 +02:00
parent cc9a682438
commit 9b77bb408e

View File

@ -184,7 +184,7 @@ def _get_version_age_warning():
update_message = UPDATE_HINT or 'Run "yt-dlp --update" to update' update_message = UPDATE_HINT or 'Run "yt-dlp --update" to update'
if dt.date(*version_parts[:3]) < dt.date.today() - dt.timedelta(days=90): if dt.date(*version_parts[:3]) < dt.datetime.now(dt.timezone.utc).date() - dt.timedelta(days=90):
return ('\n '.join(( return ('\n '.join((
f'Your yt-dlp version ({__version__}) is older than 90 days!', f'Your yt-dlp version ({__version__}) is older than 90 days!',
'It is strongly recommeded to always use the latest versions, as sites regularly change and extractors need to be adjusted.', 'It is strongly recommeded to always use the latest versions, as sites regularly change and extractors need to be adjusted.',