From 243aa2887161a9962f26d87d9ab0c664779971ab Mon Sep 17 00:00:00 2001 From: jxxghp Date: Wed, 21 Jun 2023 08:14:51 +0800 Subject: [PATCH] fix --- app/modules/filter/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/modules/filter/__init__.py b/app/modules/filter/__init__.py index 7e18755d..4f508eb3 100644 --- a/app/modules/filter/__init__.py +++ b/app/modules/filter/__init__.py @@ -123,7 +123,8 @@ class FilterModule(_ModuleBase): if need_episodes \ and not set(torrent_seasons).intersection(set(need_episodes)): # 单季集没有交集的不要 - logger.info(f"种子 {torrent.site_name} - {torrent.title} 集 {torrent_episodes} 没有需要的集") + logger.info(f"种子 {torrent.site_name} - {torrent.title} " + f"集 {torrent_episodes} 没有需要的集:{need_episodes}") return False return True