浏览代码

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

Mitsukarenai 10 年之前
父节点
当前提交
1a1251e877
共有 1 个文件被更改,包括 1 次插入1 次删除
  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')