youtube-dl

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

commit 17286a96f233426506f08d8d6664af59f0973200
parent 0892363e6ddd87f61165efd975c383d715548ecc
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 18 Mar 2014 19:33:28 +0700

[iprima] Fix permission check regex

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

diff --git a/youtube_dl/extractor/iprima.py b/youtube_dl/extractor/iprima.py @@ -48,7 +48,7 @@ class IPrimaIE(InfoExtractor): webpage = self._download_webpage(url, video_id) - if re.search(r'Nemáte oprávnění přistupovat na tuto stránku.\s*</div>', webpage): + if re.search(r'Nemáte oprávnění přistupovat na tuto stránku\.\s*</div>', webpage): raise ExtractorError( '%s said: You do not have permission to access this page' % self.IE_NAME, expected=True)