[BACKEND] Links to deprecation (#662)

This commit is contained in:
Jesse Bannon 2023-07-25 00:10:54 -07:00 committed by GitHub
parent 77487aee86
commit bb03c91656
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -128,7 +128,9 @@ class MusicTagsPlugin(Plugin[MusicTagsOptions]):
if self.plugin_options._is_old_format:
logger.warning(
"music_tags.tags is now deprecated. Place your tags directly under music_tags "
"instead. The old format will be removed in October of 2023."
"instead. The old format will be removed in October of 2023. See "
"https://ytdl-sub.readthedocs.io/en/latest/deprecation_notices.html#music-tags "
"for more details."
)
if self.plugin_options.embed_thumbnail:
logger.warning(

View file

@ -69,7 +69,9 @@ class VideoTagsPlugin(Plugin[VideoTagsOptions]):
if self.plugin_options._is_old_format:
logger.warning(
"video_tags.tags is now deprecated. Place your tags directly under video_tags "
"instead. The old format will be removed in October of 2023."
"instead. The old format will be removed in October of 2023. See "
"https://ytdl-sub.readthedocs.io/en/latest/deprecation_notices.html#video-tags "
"for more details."
)
tags_to_write: Dict[str, str] = {}