diff options
| -rw-r--r-- | youtube_dl/extractor/noco.py | 2 | 
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') | 
