[extractor/common] Make _is_valid_url more relaxed
This commit is contained in:
		
							parent
							
								
									74bc299453
								
							
						
					
					
						commit
						25e911a968
					
				
					 1 changed files with 4 additions and 6 deletions
				
			
		| 
						 | 
				
			
			@ -1424,12 +1424,10 @@ class InfoExtractor(object):
 | 
			
		|||
        try:
 | 
			
		||||
            self._request_webpage(url, video_id, 'Checking %s URL' % item, headers=headers)
 | 
			
		||||
            return True
 | 
			
		||||
        except ExtractorError as e:
 | 
			
		||||
            if isinstance(e.cause, compat_urllib_error.URLError):
 | 
			
		||||
                self.to_screen(
 | 
			
		||||
                    '%s: %s URL is invalid, skipping' % (video_id, item))
 | 
			
		||||
                return False
 | 
			
		||||
            raise
 | 
			
		||||
        except ExtractorError:
 | 
			
		||||
            self.to_screen(
 | 
			
		||||
                '%s: %s URL is invalid, skipping' % (video_id, item))
 | 
			
		||||
            return False
 | 
			
		||||
 | 
			
		||||
    def http_scheme(self):
 | 
			
		||||
        """ Either "http:" or "https:", depending on the user's preferences """
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue