From 5da54251b558812c262ca8d5bda7f46064054ffc Mon Sep 17 00:00:00 2001 From: jxxghp Date: Sun, 6 Aug 2023 19:59:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20search.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/chain/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/chain/search.py b/app/chain/search.py index 1a62eadf..2a09b3f9 100644 --- a/app/chain/search.py +++ b/app/chain/search.py @@ -287,7 +287,7 @@ class SearchChain(ChainBase): results.extend(result) logger.info(f"站点搜索进度:{finish_count} / {total_num}") self.progress.update(value=finish_count / total_num * 100, - text=f"正在搜索,已完成 {finish_count} / {total_num} 个站点 ...", + text=f"正在搜索{keyword or ''},已完成 {finish_count} / {total_num} 个站点 ...", key=ProgressKey.Search) # 计算耗时 end_time = datetime.now()