From 09cbcc457213b5e101e4167d7b9405c2673af68a Mon Sep 17 00:00:00 2001 From: kwilt Date: Mon, 9 Jun 2025 08:28:14 -0500 Subject: [PATCH] fix typo: "extrat" -> extract --- lightrag/lightrag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/lightrag.py b/lightrag/lightrag.py index 0bf7de83..6979680c 100644 --- a/lightrag/lightrag.py +++ b/lightrag/lightrag.py @@ -1006,7 +1006,7 @@ class LightRAG: except Exception as e: # Log error and update pipeline status logger.error(traceback.format_exc()) - error_msg = f"Failed to extrat document {current_file_number}/{total_files}: {file_path}" + error_msg = f"Failed to extract document {current_file_number}/{total_files}: {file_path}" logger.error(error_msg) async with pipeline_status_lock: pipeline_status["latest_message"] = error_msg