diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-05-26 22:44:00 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-05-26 22:44:00 +0800 | 
| commit | 5950cb1d6d8d27f7a7272895100da9652212fad6 (patch) | |
| tree | 1e44799283d8ac4865f6bacb20f5fec943835c0b | |
| parent | 761052db922a525d6ccaf250f9914841c9d3d66f (diff) | |
[utils] Support a new form of date
Found in dw.com (#9475)
| -rw-r--r-- | youtube_dl/utils.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index d65f5e833..316a307e0 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1035,6 +1035,7 @@ def unified_strdate(date_str, day_first=True):          format_expressions.extend([              '%d-%m-%Y',              '%d.%m.%Y', +            '%d.%m.%y',              '%d/%m/%Y',              '%d/%m/%y',              '%d/%m/%Y %H:%M:%S', @@ -1049,6 +1050,8 @@ def unified_strdate(date_str, day_first=True):          ])      for expression in format_expressions:          try: +            print(expression) +            print(date_str)              upload_date = datetime.datetime.strptime(date_str, expression).strftime('%Y%m%d')          except ValueError:              pass @@ -1910,7 +1913,7 @@ def parse_age_limit(s):  def strip_jsonp(code):      return re.sub( -        r'(?s)^[a-zA-Z0-9_.]+\s*\(\s*(.*)\);?\s*?(?://[^\n]*)*$', r'\1', code) +        r'(?s)^[a-zA-Z0-9_.$]+\s*\(\s*(.*)\);?\s*?(?://[^\n]*)*$', r'\1', code)  def js_to_json(code): | 
