[iprima] Fix permission check regex

This commit is contained in:
Sergey M․ 2014-03-18 19:33:28 +07:00
parent 0892363e6d
commit 17286a96f2
1 changed files with 1 additions and 1 deletions

View File

@ -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)