youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 3efa45c3a25d455f610439c56c50f2c7cfd0337b
parent 2727dbf78d895885016dac52dff7fdc271a77d8f
Author: Ricardo Garcia <sarbalap+freshmeat@gmail.com>
Date:   Tue, 15 Mar 2011 20:12:10 +0100

Fix upload date regexp (closes #93)

Diffstat:
Myoutube-dl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube-dl b/youtube-dl @@ -1056,7 +1056,7 @@ class YoutubeIE(InfoExtractor): # upload date upload_date = u'NA' - mobj = re.search(r'id="eow-date".*?>(.*?)</span>', video_webpage, re.DOTALL) + mobj = re.search(r'id="eow-date.*?>(.*?)</span>', video_webpage, re.DOTALL) if mobj is not None: upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split()) format_expressions = ['%d %B %Y', '%B %d %Y', '%b %d %Y']