From 35e00160505681679487dd381e69f29125789161 Mon Sep 17 00:00:00 2001 From: mac12m99 <10120390+mac12m99@users.noreply.github.com> Date: Tue, 19 Oct 2021 20:34:26 +0200 Subject: [PATCH] Fix dreamsub --- channels/dreamsub.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/channels/dreamsub.py b/channels/dreamsub.py index d4a9ca75..6c01fc00 100644 --- a/channels/dreamsub.py +++ b/channels/dreamsub.py @@ -104,12 +104,13 @@ def peliculas(item): @support.scrape def episodios(item): anime = True + # debug = True pagination = 100 if item.data: data = item.data - patron = r'
\s*]+>(?P[^<]+)<' + patron = r'<div class="sli-name">\s*<a\s+href="(?P<url>[^"]+)"[^>]+>(?P<title>[^<]+)<' return locals()