diff options
| author | garret1317 <garret@airmail.cc> | 2025-09-13 15:27:57 +0100 |
|---|---|---|
| committer | garret1317 <garret@airmail.cc> | 2025-09-13 15:27:57 +0100 |
| commit | a88ca60ee514c5347193fc679933a31117bac7ea (patch) | |
| tree | 258ad416d1dc8d8fb5373442254c0e967e22d809 /yt_dlp_plugins/extractor | |
| parent | 770bfe4411b96b28e136fbedd6b00de5cac17823 (diff) | |
| download | yt-dlp-rajiko-a88ca60ee514c5347193fc679933a31117bac7ea.tar.gz yt-dlp-rajiko-a88ca60ee514c5347193fc679933a31117bac7ea.tar.bz2 yt-dlp-rajiko-a88ca60ee514c5347193fc679933a31117bac7ea.zip | |
clarify "indexing (station) regions" text
Diffstat (limited to 'yt_dlp_plugins/extractor')
| -rw-r--r-- | yt_dlp_plugins/extractor/radiko.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp_plugins/extractor/radiko.py b/yt_dlp_plugins/extractor/radiko.py index ae0ee49..0566b6d 100644 --- a/yt_dlp_plugins/extractor/radiko.py +++ b/yt_dlp_plugins/extractor/radiko.py @@ -94,7 +94,7 @@ class _RadikoBaseIE(InfoExtractor): def _index_regions(self): region_data = {} - tree = self._download_xml("https://radiko.jp/v3/station/region/full.xml", None, note="Indexing regions") + tree = self._download_xml("https://radiko.jp/v3/station/region/full.xml", None, note="Indexing station regions") for stations in tree: for station in stations: area = station.find("area_id").text |