about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-05-16 22:12:52 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-05-16 22:12:52 +0200
commit76e92371acbf116f046b35c94781e3b931efd741 (patch)
treed9e5a6ff5b6e3e397a612db7e8b5b3b039e34702
parent08af0205f974c4b6c1b01c0bc0200f90cce36c48 (diff)
downloadyoutube-dl-76e92371acbf116f046b35c94781e3b931efd741.tar.gz
youtube-dl-76e92371acbf116f046b35c94781e3b931efd741.tar.xz
youtube-dl-76e92371acbf116f046b35c94781e3b931efd741.zip
[youtube] Recognize a second format of the upload_date in the 'watch-uploader-info' element (#2911)
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index f7bfa9f88..981ca62c0 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1140,7 +1140,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
         mobj = re.search(r'(?s)id="eow-date.*?>(.*?)</span>', video_webpage)
         if mobj is None:
             mobj = re.search(
-                r'(?s)id="watch-uploader-info".*?>.*?Published on (.*?)</strong>',
+                r'(?s)id="watch-uploader-info".*?>.*?(?:Published|Uploaded) on (.*?)</strong>',
                 video_webpage)
         if mobj is not None:
             upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())