[BACKEND] Links to deprecation (#662)
This commit is contained in:
parent
77487aee86
commit
bb03c91656
2 changed files with 6 additions and 2 deletions
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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] = {}
|
||||
|
|
|
|||
Loading…
Reference in a new issue