aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/extractor/iqiyi.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-03-04 19:38:55 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-03-08 22:38:06 +0530
commit08d30158ec8e7e08c1d83dcfde6dba18c95b2640 (patch)
treeccfe053ce94c1005b3d8b3a8a0a9b9af4180424e /yt_dlp/extractor/iqiyi.py
parentc89bec262c7a8efa078c61b2ec59afdd4051e4bf (diff)
[cleanup, docs] Misc cleanup
Closes #2828, closes #2734, closes #2802, closes #2937
Diffstat (limited to 'yt_dlp/extractor/iqiyi.py')
-rw-r--r--yt_dlp/extractor/iqiyi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/iqiyi.py b/yt_dlp/extractor/iqiyi.py
index 74e20a54a..fdcf14469 100644
--- a/yt_dlp/extractor/iqiyi.py
+++ b/yt_dlp/extractor/iqiyi.py
@@ -621,7 +621,7 @@ class IqIE(InfoExtractor):
preview_time = traverse_obj(
initial_format_data, ('boss_ts', (None, 'data'), ('previewTime', 'rtime')), expected_type=float_or_none, get_all=False)
if traverse_obj(initial_format_data, ('boss_ts', 'data', 'prv'), expected_type=int_or_none):
- self.report_warning('This preview video is limited%s' % format_field(preview_time, template='to %s seconds'))
+ self.report_warning('This preview video is limited%s' % format_field(preview_time, template=' to %s seconds'))
# TODO: Extract audio-only formats
for bid in set(traverse_obj(initial_format_data, ('program', 'video', ..., 'bid'), expected_type=str_or_none, default=[])):