diff options
author | Simon Sawicki <contact@grub4k.xyz> | 2023-12-30 22:27:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-30 22:27:36 +0100 |
commit | f9fb3ce86e3c6a0c3c33b45392b8d7288bceba76 (patch) | |
tree | 4238cec16764841f1c61b4d8860b87615dfedd6b /yt_dlp/extractor/wordpress.py | |
parent | 5f009a094f0e8450792b097c4c8273622778052d (diff) |
[cleanup] Misc (#8598)
Authored by: bashonly, pukkandan, seproDev, Grub4K
Co-authored-by: bashonly <bashonly@protonmail.com>
Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
Co-authored-by: sepro <4618135+seproDev@users.noreply.github.com>
Diffstat (limited to 'yt_dlp/extractor/wordpress.py')
-rw-r--r-- | yt_dlp/extractor/wordpress.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/wordpress.py b/yt_dlp/extractor/wordpress.py index 53820b57a..378d99dbc 100644 --- a/yt_dlp/extractor/wordpress.py +++ b/yt_dlp/extractor/wordpress.py @@ -70,7 +70,7 @@ class WordpressPlaylistEmbedIE(InfoExtractor): 'height': int_or_none(traverse_obj(track, ('dimensions', 'original', 'height'))), 'width': int_or_none(traverse_obj(track, ('dimensions', 'original', 'width'))), } for track in traverse_obj(playlist_json, ('tracks', ...), expected_type=dict)] - yield self.playlist_result(entries, self._generic_id(url) + f'-wp-playlist-{i+1}', 'Wordpress Playlist') + yield self.playlist_result(entries, self._generic_id(url) + f'-wp-playlist-{i + 1}', 'Wordpress Playlist') class WordpressMiniAudioPlayerEmbedIE(InfoExtractor): |