From: Mitsukarenai Date: Wed, 24 Jun 2015 08:40:01 +0000 (+0200) Subject: [noco.tv] Fix issue #6066: title interpreted as integer X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;ds=sidebyside;h=1a1251e87716ba02bfe6c4c9af2726e413e00208;p=youtube-dl [noco.tv] Fix issue #6066: title interpreted as integer --- diff --git a/youtube_dl/extractor/noco.py b/youtube_dl/extractor/noco.py index 5bbd2dcf6..a53e27b27 100644 --- a/youtube_dl/extractor/noco.py +++ b/youtube_dl/extractor/noco.py @@ -195,7 +195,7 @@ class NocoIE(InfoExtractor): 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')