diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-04-13 16:52:52 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-04-13 16:52:52 +0800 |
commit | 34d98cc411d379cea02a67ba7fc9f52e74daff23 (patch) | |
tree | 6d5c721ce2d20ab402940bd9a1a39cf69105f9ce /youtube_dl/extractor | |
parent | 40fcba5edb0f54f09e33a193a0ffefb5668ca694 (diff) |
[tv2hu] Fix invalid escape sequence on Py3.6
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/tv2hu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tv2hu.py b/youtube_dl/extractor/tv2hu.py index ce01cc80d..86017b757 100644 --- a/youtube_dl/extractor/tv2hu.py +++ b/youtube_dl/extractor/tv2hu.py @@ -16,7 +16,7 @@ class TV2HuIE(InfoExtractor): 'ext': 'mp4', 'title': 'Ezek megőrültek! - 1. adás 1. rész', 'upload_date': '20160826', - 'thumbnail': 're:^https?://.*\.jpg$' + 'thumbnail': r're:^https?://.*\.jpg$' } }, { 'url': 'http://tv2.hu/ezek_megorultek/teljes_adasok/217677_ezek-megorultek---1.-adas-2.-resz.html', |