From eb59ae93e006fd605a53669d301e290e33e02bc5 Mon Sep 17 00:00:00 2001 From: Christian Bastian <80225746+cdb-boop@users.noreply.github.com> Date: Sat, 21 Sep 2024 19:42:34 -0400 Subject: [PATCH] Console warning about fixing model info issue. --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 64198cf..bcdaf19 100644 --- a/__init__.py +++ b/__init__.py @@ -312,7 +312,7 @@ class Civitai: model_trigger_words = [] model_info = Civitai.search_by_model_id(model_id) if len(model_info) == 0: # can happen if model download is disabled - print("Model Manager WARNING: Unable to find Civitai 'modelId' " + str(model_id)) + print("Model Manager WARNING: Unable to find Civitai 'modelId' " + str(model_id) + ". Try deleting .json file and trying again later!") return "" model_name = model_info.get("name") model_description = model_info.get("description")