diff options
author | garret1317 <garret@airmail.cc> | 2025-09-14 17:33:57 +0100 |
---|---|---|
committer | garret1317 <garret@airmail.cc> | 2025-09-14 17:33:57 +0100 |
commit | 68660d1dfe550be845033cd0301cd2e46144afdd (patch) | |
tree | 2760cc545bc3338b7c5962be1e3b5a03e9b762fd /yt_dlp_plugins | |
parent | 3ca06221b455747c36dbba9e226ec09df09d2e96 (diff) | |
download | yt-dlp-rajiko-68660d1dfe550be845033cd0301cd2e46144afdd.tar.gz yt-dlp-rajiko-68660d1dfe550be845033cd0301cd2e46144afdd.tar.bz2 yt-dlp-rajiko-68660d1dfe550be845033cd0301cd2e46144afdd.zip |
Add instructions for obtaining protobug in the warning message
Diffstat (limited to 'yt_dlp_plugins')
-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 a984be3..10579b5 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'Only extracting the latest {len(episode_list_response["episodesList"])} episodes. Install protobug for more.') + 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.') return { "_type": "playlist", |