Преглед на файлове

[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')