youtube-dl

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

commit 324b2c78fad949545b6e0707bb5ee1e37ec6217d
parent d34f98289b302619b1213ef6e50e034021f811e9
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri,  2 Jan 2015 21:46:57 +0600

[xtube] Fix uploader regex

Diffstat:
Myoutube_dl/extractor/xtube.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/xtube.py b/youtube_dl/extractor/xtube.py @@ -40,7 +40,7 @@ class XTubeIE(InfoExtractor): r'<p class="title">([^<]+)', webpage, 'title') video_uploader = self._html_search_regex( [r"var\s+contentOwnerId\s*=\s*'([^']+)", - r'By:\s*<a href="/community/profile\.php?user=([^"]+)'], + r'By:\s*<a href="/community/profile\.php\?user=([^"]+)'], webpage, 'uploader', fatal=False) video_description = self._html_search_regex( r'<p class="fieldsDesc">([^<]+)',