diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-04 19:08:48 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-04 19:08:48 +0600 |
commit | 15ac8413c78b991f2e99b6bdc538bc8c5ae8e8a0 (patch) | |
tree | 2aba4aa463265bfd846048c79125a45b6a83787b /youtube_dl | |
parent | 79c21abba7c9902f00ddac83a2af29c36fe0e122 (diff) |
[utils] Avoid treating `*-%Y` date template as UTC offset
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index be3f62da7..52f0dd09a 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -730,7 +730,8 @@ def unified_strdate(date_str, day_first=True): # Replace commas date_str = date_str.replace(',', ' ') # %z (UTC offset) is only supported in python>=3.2 - date_str = re.sub(r' ?(\+|-)[0-9]{2}:?[0-9]{2}$', '', date_str) + if not re.match(r'^[0-9]{1,2}-[0-9]{1,2}-[0-9]{4}$', date_str): + date_str = re.sub(r' ?(\+|-)[0-9]{2}:?[0-9]{2}$', '', date_str) # Remove AM/PM + timezone date_str = re.sub(r'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str) |