diff options
author | garret1317 <garret@airmail.cc> | 2025-09-18 23:11:24 +0100 |
---|---|---|
committer | garret1317 <garret@airmail.cc> | 2025-09-18 23:11:24 +0100 |
commit | 25d4c20be556825a5b3e2b6a66c719ad2c5d8c1f (patch) | |
tree | 37ac5875a1394937d534928d5e5fa8fcf4e69fff | |
parent | f0067f1e256446727fdcf0eabeffea471ea87cfc (diff) | |
download | yt-dlp-rajiko-25d4c20be556825a5b3e2b6a66c719ad2c5d8c1f.tar.gz yt-dlp-rajiko-25d4c20be556825a5b3e2b6a66c719ad2c5d8c1f.tar.bz2 yt-dlp-rajiko-25d4c20be556825a5b3e2b6a66c719ad2c5d8c1f.zip |
clarify protobug error message
-rw-r--r-- | yt_dlp_plugins/extractor/radiko_podcast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp_plugins/extractor/radiko_podcast.py b/yt_dlp_plugins/extractor/radiko_podcast.py index 10579b5..21e3dfd 100644 --- a/yt_dlp_plugins/extractor/radiko_podcast.py +++ b/yt_dlp_plugins/extractor/radiko_podcast.py @@ -109,7 +109,7 @@ class RadikoPodcastChannelIE(_RadikoPodcastBaseIE): cursor = episode.id yield self._extract_episode(dataclasses.asdict(episode)) else: - self.report_warning(f'protobug is required to extract more than the latest {len(episode_list_response["episodesList"])} episodes.\nIf you installed yt-dlp-rajiko manually, use the .zip bundle instead. If you installed with pip, install protobug as well.') + self.report_warning(f'protobug is required to extract more than the latest {len(episode_list_response["episodesList"])} episodes.\nIf you installed yt-dlp-rajiko manually (with the .whl), use the .zip bundle instead. If you installed with pip, pip install protobug .') return { "_type": "playlist", |