From bb03c916564fb9cef3d084eaddc9d623b32a15fa Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Tue, 25 Jul 2023 00:10:54 -0700 Subject: [PATCH] [BACKEND] Links to deprecation (#662) --- src/ytdl_sub/plugins/music_tags.py | 4 +++- src/ytdl_sub/plugins/video_tags.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ytdl_sub/plugins/music_tags.py b/src/ytdl_sub/plugins/music_tags.py index d5928567..43974492 100644 --- a/src/ytdl_sub/plugins/music_tags.py +++ b/src/ytdl_sub/plugins/music_tags.py @@ -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( diff --git a/src/ytdl_sub/plugins/video_tags.py b/src/ytdl_sub/plugins/video_tags.py index ebc4607d..02601f3b 100644 --- a/src/ytdl_sub/plugins/video_tags.py +++ b/src/ytdl_sub/plugins/video_tags.py @@ -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] = {}