From a89c45ef53a42ab09ecbe8679934922ecf4e9113 Mon Sep 17 00:00:00 2001 From: "M.Yasoob Khalid" Date: Thu, 6 Jun 2013 00:35:41 +0500 Subject: [PATCH] changed my regex a bit --- youtube_dl/InfoExtractors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index dc7c341f7..2e8d0df9f 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -4504,7 +4504,7 @@ class HypemIE(InfoExtractor): html = response.read() response.close() track_list = [] - list_data = re.search(r'',html) + list_data = re.search(b'',html) html_tracks = list_data.group(1) if html_tracks is None: tracks = track_list