From ea02211edd8506214f6a701d1c63c809092bafee Mon Sep 17 00:00:00 2001 From: caiwx86 Date: Thu, 14 Nov 2024 22:14:48 +0800 Subject: [PATCH] fix --- Comics/spiders/rm_comic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Comics/spiders/rm_comic.py b/Comics/spiders/rm_comic.py index d9a8504..c63770a 100644 --- a/Comics/spiders/rm_comic.py +++ b/Comics/spiders/rm_comic.py @@ -49,7 +49,7 @@ class RmComicSpider(scrapy.Spider): # 校验繁体和简体中文CBZ路径是否存在 if cbz_path !=None and os.path.exists(cbz_path): logging.info(f"漫画 {cbz_path} 已存在, 跳过中...") - # yield item + yield item else: # 开始访问章节链接并跳转到self.parse_chapter yield scrapy.Request(self.main_url+link, meta={'item': item}, callback=self.parse_chapter)