diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-03 10:58:28 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-03 10:58:28 +0100 |
commit | 9bb8e0a3f9276f65de38cda431bf72f7bd266693 (patch) | |
tree | e7e6d9d96a107d4ac28338c58ad9a8bce98e6097 /youtube_dl/utils.py | |
parent | 1a6373ef3960add0117f797e0afe3322352c1c52 (diff) |
[wsj] Add new extractor (Fixes #4854)
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 251074bf5..8f5463f1c 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -701,7 +701,7 @@ def unified_strdate(date_str, day_first=True): # %z (UTC offset) is only supported in python>=3.2 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) + date_str = re.sub(r'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str) format_expressions = [ '%d %B %Y', |