[noco.tv] Fix issue #6066: title interpreted as integer
This commit is contained in:
parent
18b5e1e534
commit
1a1251e877
1 changed files with 1 additions and 1 deletions
|
@ -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')
|
||||
|
||||
|
|
Loading…
Reference in a new issue