aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/noco.py
diff options
context:
space:
mode:
authorMitsukarenai <mitsu@suumitsu.eu>2015-06-24 10:40:01 +0200
committerMitsukarenai <mitsu@suumitsu.eu>2015-06-24 10:40:01 +0200
commit1a1251e87716ba02bfe6c4c9af2726e413e00208 (patch)
tree026aee5f30bed145420a6040a8d24a90d5014361 /youtube_dl/extractor/noco.py
parent18b5e1e5348ba3a6d1b6a98e97217eebb3d32a1e (diff)
downloadyoutube-dl-1a1251e87716ba02bfe6c4c9af2726e413e00208.tar.xz
[noco.tv] Fix issue #6066: title interpreted as integer
Diffstat (limited to 'youtube_dl/extractor/noco.py')
-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')