未验证 提交 9dc034c2 编写于 作者: M Mort Yao

[common] download_urls(): fix URL printing for DASH streams

上级 e6534c41
......@@ -916,7 +916,10 @@ def download_urls(
return
if dry_run:
print_user_agent(faker=faker)
print('Real URLs:\n%s' % '\n'.join(urls))
try:
print('Real URLs:\n%s' % '\n'.join(urls))
except:
print('Real URLs:\n%s' % '\n'.join([j for i in urls for j in i]))
return
if player:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册