[utils] Improve unified_timestamp
authorSergey M․ <dstftw@gmail.com>
Sun, 11 Jun 2017 14:27:22 +0000 (21:27 +0700)
committerSergey M․ <dstftw@gmail.com>
Sun, 11 Jun 2017 14:27:22 +0000 (21:27 +0700)
test/test_utils.py
youtube_dl/utils.py

index d7e05817ccbdf9c51f53d68cf9694ac4591aac00..41b094d89f7bf80bdd49d15dcf60f65d3b02ce23 100644 (file)
@@ -340,6 +340,7 @@ class TestUtil(unittest.TestCase):
         self.assertEqual(unified_timestamp('May 16, 2016 11:15 PM'), 1463440500)
         self.assertEqual(unified_timestamp('Feb 7, 2016 at 6:35 pm'), 1454870100)
         self.assertEqual(unified_timestamp('2017-03-30T17:52:41Q'), 1490896361)
+        self.assertEqual(unified_timestamp('Sep 11, 2013 | 5:49 AM'), 1378878540)
 
     def test_determine_ext(self):
         self.assertEqual(determine_ext('http://example.com/foo/bar.mp4/?download'), 'mp4')
index d79410e58a2ae0965faa291f67b9a6645956c5f0..16bf49408c5228202cd43d9f7265d77c1c5122dc 100644 (file)
@@ -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)