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] = {}