[utils] Default age_limit to None
authorPhilipp Hagemeister <phihag@phihag.de>
Fri, 3 Oct 2014 18:17:10 +0000 (20:17 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Fri, 3 Oct 2014 18:17:12 +0000 (20:17 +0200)
If we can't parse it, it means we don't have any information, not that the content is unrestricted.

youtube_dl/extractor/common.py
youtube_dl/utils.py

index 611cf95f1125ec9340a96554df9542d1fcbd62b4..450c7dfd69d0000c810f18ef35741aae05221c40 100644 (file)
@@ -138,6 +138,8 @@ class InfoExtractor(object):
 
     Unless mentioned otherwise, the fields should be Unicode strings.
 
+    Unless mentioned otherwise, None is equivalent to absence of information.
+
     Subclasses of this one should re-define the _real_initialize() and
     _real_extract() methods and define a _VALID_URL regexp.
     Probably, they should also be added to the list of extractors.
index 2615553c11117c0e24975b4583602a9595893beb..2c9081733c10712ebdec4d08dd4b2ff2ec88f629 100644 (file)
@@ -1576,9 +1576,9 @@ US_RATINGS = {
 
 def parse_age_limit(s):
     if s is None:
-        return 0
+        return None
     m = re.match(r'^(?P<age>\d{1,2})\+?$', s)
-    return int(m.group('age')) if m else US_RATINGS.get(s, 0)
+    return int(m.group('age')) if m else US_RATINGS.get(s, None)
 
 
 def strip_jsonp(code):