youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 022383139ba96722d27200753084ae4d160f8a3d
parent 18b5e1e5348ba3a6d1b6a98e97217eebb3d32a1e
Author: Sergey M <dstftw@gmail.com>
Date:   Wed, 24 Jun 2015 19:10:01 +0500

Merge pull request #6067 from mitsukarenai/master

[noco.tv] Fix issue #6066: title interpreted as integer
Diffstat:
Myoutube_dl/extractor/noco.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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')