1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-26 19:25:45 +02:00

[noco.tv] Fix issue #6066: title interpreted as integer

This commit is contained in:
Mitsukarenai 2015-06-24 10:40:01 +02:00
parent 18b5e1e534
commit 1a1251e877

View File

@ -195,7 +195,7 @@ def _real_extract(self, url):
if episode_number:
title += ' #' + compat_str(episode_number)
if episode:
title += ' - ' + episode
title += ' - ' + compat_str(episode)
description = show.get('show_resume') or show.get('family_resume')