summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M. <dstftw@gmail.com>2015-06-24 19:10:01 +0500
committerSergey M. <dstftw@gmail.com>2015-06-24 19:10:01 +0500
commit022383139ba96722d27200753084ae4d160f8a3d (patch)
tree026aee5f30bed145420a6040a8d24a90d5014361
parent18b5e1e5348ba3a6d1b6a98e97217eebb3d32a1e (diff)
parent1a1251e87716ba02bfe6c4c9af2726e413e00208 (diff)
downloadyoutube-dl-022383139ba96722d27200753084ae4d160f8a3d.tar.gz
youtube-dl-022383139ba96722d27200753084ae4d160f8a3d.tar.xz
youtube-dl-022383139ba96722d27200753084ae4d160f8a3d.zip
Merge pull request #6067 from mitsukarenai/master
[noco.tv] Fix issue #6066: title interpreted as integer
-rw-r--r--youtube_dl/extractor/noco.py2
1 files changed, 1 insertions, 1 deletions
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')