youtube-dl

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

commit 8fab62482abf8e75f2dd98fedbe95d81ce767382
parent d6e9c2706fd803b5963fba47b168b6bccc063667
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 27 Feb 2016 16:59:10 +0600

[tnaflixnetwork] Fallback age limit to 18

Diffstat:
Myoutube_dl/extractor/tnaflix.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/tnaflix.py b/youtube_dl/extractor/tnaflix.py @@ -117,7 +117,7 @@ class TNAFlixNetworkBaseIE(InfoExtractor): title = self._html_search_regex( self._TITLE_REGEX, webpage, 'title') if self._TITLE_REGEX else self._og_search_title(webpage) - age_limit = self._rta_search(webpage) + age_limit = self._rta_search(webpage) or 18 duration = parse_duration(self._html_search_meta( 'duration', webpage, 'duration', default=None))