From: Philipp Hagemeister Date: Fri, 4 Apr 2014 20:46:44 +0000 (+0200) Subject: [teamcoco] Fix regex in 2.6 (#2700) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=c465afd736716ab1a50e2d03db535028b4f4e723;p=youtube-dl [teamcoco] Fix regex in 2.6 (#2700) The re engine does not want to repeat an empty string, for fear that something like (.*)* could be matching the tokens ... "" "" "" "" "" "" Of course, that's harmless with a question mark, although still somewhat strange. --- diff --git a/youtube_dl/extractor/teamcoco.py b/youtube_dl/extractor/teamcoco.py index fdaf62cd0..c86f1e423 100644 --- a/youtube_dl/extractor/teamcoco.py +++ b/youtube_dl/extractor/teamcoco.py @@ -9,7 +9,7 @@ from ..utils import ( class TeamcocoIE(InfoExtractor): - _VALID_URL = r'http://teamcoco\.com/video/(?P\d*)?/?(?P.*)' + _VALID_URL = r'http://teamcoco\.com/video/(?P[0-9]+)?/?(?P.*)' _TESTS = [ { 'url': 'http://teamcoco.com/video/80187/conan-becomes-a-mary-kay-beauty-consultant',