Browse Source

Merge pull request #6067 from mitsukarenai/master

[noco.tv] Fix issue #6066: title interpreted as integer
Sergey M. 10 years ago
parent
commit
022383139b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/noco.py

+ 1 - 1
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')