diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-10-17 15:39:06 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-10-17 15:39:06 +0800 |
commit | c233003afe34ba9db7861bf44d5097ade870c739 (patch) | |
tree | 7e13681a8aff4350aa38e652b82f730b1e434c4a /youtube_dl | |
parent | 83fcf19e2d517a2862fd89dffb1d0abad024a5b9 (diff) |
[megaphone] Fix deprecated escape sequence
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/megaphone.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/megaphone.py b/youtube_dl/extractor/megaphone.py index 60e3caf0d..5bafa6cf4 100644 --- a/youtube_dl/extractor/megaphone.py +++ b/youtube_dl/extractor/megaphone.py @@ -18,7 +18,7 @@ class MegaphoneIE(InfoExtractor): 'id': 'GLT9749789991', 'ext': 'mp3', 'title': '#97 What Kind Of Idiot Gets Phished?', - 'thumbnail': 're:^https://.*\.png.*$', + 'thumbnail': r're:^https://.*\.png.*$', 'duration': 1776.26375, 'author': 'Reply All', }, |