mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[refactor] Single quotes consistency
This commit is contained in:
		| @@ -8,13 +8,13 @@ from .common import InfoExtractor | ||||
| class RingTVIE(InfoExtractor): | ||||
|     _VALID_URL = r'http://(?:www\.)?ringtv\.craveonline\.com/(?P<type>news|videos/video)/(?P<id>[^/?#]+)' | ||||
|     _TEST = { | ||||
|         "url": "http://ringtv.craveonline.com/news/310833-luis-collazo-says-victor-ortiz-better-not-quit-on-jan-30", | ||||
|         "md5": "d25945f5df41cdca2d2587165ac28720", | ||||
|         "info_dict": { | ||||
|         'url': 'http://ringtv.craveonline.com/news/310833-luis-collazo-says-victor-ortiz-better-not-quit-on-jan-30', | ||||
|         'md5': 'd25945f5df41cdca2d2587165ac28720', | ||||
|         'info_dict': { | ||||
|             'id': '857645', | ||||
|             'ext': 'mp4', | ||||
|             "title": 'Video: Luis Collazo says Victor Ortiz "better not quit on Jan. 30" - Ring TV', | ||||
|             "description": 'Luis Collazo is excited about his Jan. 30 showdown with fellow former welterweight titleholder Victor Ortiz at Barclays Center in his hometown of Brooklyn. The SuperBowl week fight headlines a Golden Boy Live! card on Fox Sports 1.', | ||||
|             'title': 'Video: Luis Collazo says Victor Ortiz "better not quit on Jan. 30" - Ring TV', | ||||
|             'description': 'Luis Collazo is excited about his Jan. 30 showdown with fellow former welterweight titleholder Victor Ortiz at Barclays Center in his hometown of Brooklyn. The SuperBowl week fight headlines a Golden Boy Live! card on Fox Sports 1.', | ||||
|         } | ||||
|     } | ||||
|  | ||||
| @@ -32,8 +32,8 @@ class RingTVIE(InfoExtractor): | ||||
|         description = self._html_search_regex( | ||||
|             r'addthis:description="([^"]+)"', | ||||
|             webpage, 'description', fatal=False) | ||||
|         final_url = "http://ringtv.craveonline.springboardplatform.com/storage/ringtv.craveonline.com/conversion/%s.mp4" % video_id | ||||
|         thumbnail_url = "http://ringtv.craveonline.springboardplatform.com/storage/ringtv.craveonline.com/snapshots/%s.jpg" % video_id | ||||
|         final_url = 'http://ringtv.craveonline.springboardplatform.com/storage/ringtv.craveonline.com/conversion/%s.mp4' % video_id | ||||
|         thumbnail_url = 'http://ringtv.craveonline.springboardplatform.com/storage/ringtv.craveonline.com/snapshots/%s.jpg' % video_id | ||||
|  | ||||
|         return { | ||||
|             'id': video_id, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․