From 1a1251e87716ba02bfe6c4c9af2726e413e00208 Mon Sep 17 00:00:00 2001 From: Mitsukarenai Date: Wed, 24 Jun 2015 10:40:01 +0200 Subject: [PATCH] [noco.tv] Fix issue #6066: title interpreted as integer --- youtube_dl/extractor/noco.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') -- 2.30.2