diff options
author | iwconfig <[email protected]> | 2019-01-01 15:39:18 +0100 |
---|---|---|
committer | Sergey M <[email protected]> | 2019-01-01 21:39:18 +0700 |
commit | 9b5c8751eeb10fd41c560696d73fec3401055ddc (patch) | |
tree | f8c7d8ce474a4fcfb2009e8a3072db816709dbfb /youtube_dl/extractor/yourporn.py | |
parent | d9f1123c08e21c7170b906c7de2562b7293f7a3c (diff) | |
download | youtube-dl-9b5c8751eeb10fd41c560696d73fec3401055ddc.tar.gz youtube-dl-9b5c8751eeb10fd41c560696d73fec3401055ddc.zip |
[extractors] Add missing age limits
Diffstat (limited to 'youtube_dl/extractor/yourporn.py')
-rw-r--r-- | youtube_dl/extractor/yourporn.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/yourporn.py b/youtube_dl/extractor/yourporn.py index a9951f3b8..432d1fff4 100644 --- a/youtube_dl/extractor/yourporn.py +++ b/youtube_dl/extractor/yourporn.py @@ -14,6 +14,7 @@ class YourPornIE(InfoExtractor): 'ext': 'mp4', 'title': 'md5:c9f43630bd968267672651ba905a7d35', 'thumbnail': r're:^https?://.*\.jpg$', + 'age_limit': 18 }, } @@ -38,4 +39,5 @@ class YourPornIE(InfoExtractor): 'url': video_url, 'title': title, 'thumbnail': thumbnail, + 'age_limit': 18 } |