mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 22:55:18 +00:00 
			
		
		
		
	Fix "invalid escape sequences" error on Python 3.6
This commit is contained in:
		| @@ -29,7 +29,7 @@ class QQMusicIE(InfoExtractor): | ||||
|             'release_date': '20141227', | ||||
|             'creator': '林俊杰', | ||||
|             'description': 'md5:d327722d0361576fde558f1ac68a7065', | ||||
|             'thumbnail': 're:^https?://.*\.jpg$', | ||||
|             'thumbnail': r're:^https?://.*\.jpg$', | ||||
|         } | ||||
|     }, { | ||||
|         'note': 'There is no mp3-320 version of this song.', | ||||
| @@ -42,7 +42,7 @@ class QQMusicIE(InfoExtractor): | ||||
|             'release_date': '20050626', | ||||
|             'creator': '李季美', | ||||
|             'description': 'md5:46857d5ed62bc4ba84607a805dccf437', | ||||
|             'thumbnail': 're:^https?://.*\.jpg$', | ||||
|             'thumbnail': r're:^https?://.*\.jpg$', | ||||
|         } | ||||
|     }, { | ||||
|         'note': 'lyrics not in .lrc format', | ||||
| @@ -54,7 +54,7 @@ class QQMusicIE(InfoExtractor): | ||||
|             'release_date': '19970225', | ||||
|             'creator': 'Dark Funeral', | ||||
|             'description': 'md5:ed14d5bd7ecec19609108052c25b2c11', | ||||
|             'thumbnail': 're:^https?://.*\.jpg$', | ||||
|             'thumbnail': r're:^https?://.*\.jpg$', | ||||
|         }, | ||||
|         'params': { | ||||
|             'skip_download': True, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Yen Chi Hsuan
					Yen Chi Hsuan