From dd4afaf8819263502bd974d17aef546cf06a4c55 Mon Sep 17 00:00:00 2001 From: Deng Zhou <553531284@qq.com> Date: Sat, 30 Apr 2022 00:03:16 +0800 Subject: [PATCH] fix bug --- WebCrawler/fanza.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebCrawler/fanza.py b/WebCrawler/fanza.py index 4594987..622f837 100644 --- a/WebCrawler/fanza.py +++ b/WebCrawler/fanza.py @@ -67,7 +67,7 @@ def getOutline(html): def getExtrafanart(htmlcode): # 获取剧照 - html_pather = re.compile(r'
') + html_pather = re.compile(r'\n') html = html_pather.search(htmlcode) if html: html = html.group()