mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 05:37:07 -05:00 
			
		
		
		
	[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.
			
			
This commit is contained in:
		@@ -9,7 +9,7 @@ from ..utils import (
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class TeamcocoIE(InfoExtractor):
 | 
			
		||||
    _VALID_URL = r'http://teamcoco\.com/video/(?P<video_id>\d*)?/?(?P<url_title>.*)'
 | 
			
		||||
    _VALID_URL = r'http://teamcoco\.com/video/(?P<video_id>[0-9]+)?/?(?P<url_title>.*)'
 | 
			
		||||
    _TESTS = [
 | 
			
		||||
    {
 | 
			
		||||
        'url': 'http://teamcoco.com/video/80187/conan-becomes-a-mary-kay-beauty-consultant',
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user