From 9c9e7f1dd5192bc47b472304aa8a29bb80299d95 Mon Sep 17 00:00:00 2001 From: Intel1 Date: Wed, 15 Aug 2018 10:39:39 -0500 Subject: [PATCH] logger.debug() TM --- plugin.video.alfa/channels/seriesblanco.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugin.video.alfa/channels/seriesblanco.py b/plugin.video.alfa/channels/seriesblanco.py index 5714c645..12fff8f4 100644 --- a/plugin.video.alfa/channels/seriesblanco.py +++ b/plugin.video.alfa/channels/seriesblanco.py @@ -281,7 +281,6 @@ def findvideos(item): if 'streamcrypt' in url: url = url.replace('https://streamcrypt', 'https://www.streamcrypt') temp_data = httptools.downloadpage(url, follow_redirects=False, only_headers=True) - logger.debug(temp_data.headers) if 'location' in temp_data.headers: url = temp_data.headers['location'] else: @@ -330,7 +329,6 @@ def search_results(item): itemlist = [] data = get_source(item.url) - logger.debug(data) patron = '
.*?src="([^"]+)".*?alt="([^"]+)"' matches = re.compile(patron, re.DOTALL).findall(data)