From 25588af8576234b15d70fad435c66063cac4bec2 Mon Sep 17 00:00:00 2001 From: Yousef Rafat <81116377+yousef-rafat@users.noreply.github.com> Date: Fri, 8 May 2026 12:04:15 +0300 Subject: [PATCH] update error message --- comfy_extras/nodes_bg_removal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_bg_removal.py b/comfy_extras/nodes_bg_removal.py index 28b7459aa..aec04e0c5 100644 --- a/comfy_extras/nodes_bg_removal.py +++ b/comfy_extras/nodes_bg_removal.py @@ -23,7 +23,7 @@ class LoadBackGroundRemovalModel(IO.ComfyNode): path = folder_paths.get_full_path_or_raise("background_removal", background_removal_name) bg = load(path) if bg is None: - raise RuntimeError("ERROR: clip vision file is invalid and does not contain a valid vision model.") + raise RuntimeError("ERROR: background model file is invalid and does not contain a valid background removal model.") return IO.NodeOutput(bg) class RemoveBackGround(IO.ComfyNode):