mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-03 19:23:44 +00:00 
			
		
		
		
	[channel9] strip 'session_day'
This commit is contained in:
		
							parent
							
								
									b30c4992a9
								
							
						
					
					
						commit
						506e261d20
					
				@ -158,7 +158,7 @@ class Channel9IE(InfoExtractor):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    def _extract_session_day(self, html):
 | 
					    def _extract_session_day(self, html):
 | 
				
			||||||
        m = re.search(r'<li class="day">\s*<a href="/Events/[^"]+">(?P<day>[^<]+)</a>\s*</li>', html)
 | 
					        m = re.search(r'<li class="day">\s*<a href="/Events/[^"]+">(?P<day>[^<]+)</a>\s*</li>', html)
 | 
				
			||||||
        return m.group('day') if m is not None else None
 | 
					        return m.group('day').strip() if m is not None else None
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _extract_session_room(self, html):
 | 
					    def _extract_session_room(self, html):
 | 
				
			||||||
        m = re.search(r'<li class="room">\s*(?P<room>.+?)\s*</li>', html)
 | 
					        m = re.search(r'<li class="room">\s*(?P<room>.+?)\s*</li>', html)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user