From 2ae2ffda5eae9c64d40d2fec839ba5deb07717f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Sun, 11 Jun 2017 21:27:22 +0700 Subject: [utils] Improve unified_timestamp --- youtube_dl/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'youtube_dl/utils.py') diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index d79410e58..16bf49408 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1179,7 +1179,7 @@ def unified_timestamp(date_str, day_first=True): if date_str is None: return None - date_str = date_str.replace(',', ' ') + date_str = re.sub(r'[,|]', '', date_str) pm_delta = 12 if re.search(r'(?i)PM', date_str) else 0 timezone, date_str = extract_timezone(date_str) -- cgit v1.2.3