[youtube] Fix extraction.
[youtube-dl] / youtube_dl / extractor / camwithher.py
index 9809096ec9e483fa3ac18d5d256cdc5d5a772daf..bbc5205fded6ee2ba99c159e5436d9fcb74ffd2b 100644 (file)
@@ -25,6 +25,7 @@ class CamWithHerIE(InfoExtractor):
             'comment_count': int,
             'uploader': 'MileenaK',
             'upload_date': '20160322',
+            'age_limit': 18,
         },
         'params': {
             'skip_download': True,
@@ -72,7 +73,6 @@ class CamWithHerIE(InfoExtractor):
         upload_date = unified_strdate(self._search_regex(
             r'Added on\s*:\s*([\d-]+)', webpage, 'upload date', default=None))
 
-
         return {
             'id': flv_id,
             'url': rtmp_url,
@@ -85,4 +85,5 @@ class CamWithHerIE(InfoExtractor):
             'comment_count': comment_count,
             'uploader': uploader,
             'upload_date': upload_date,
+            'age_limit': 18
         }