From 891458fef8bd928ab2c8e18629243c919f00c061 Mon Sep 17 00:00:00 2001 From: "dr.lt.data" Date: Tue, 12 Dec 2023 09:20:45 +0900 Subject: [PATCH] fix: potential error of undefined global variable `comfy_ui_hash` --- __init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 3c60361b..18b1ed60 100644 --- a/__init__.py +++ b/__init__.py @@ -18,10 +18,11 @@ import re import signal import nodes -version = "V1.11.1" +version = "V1.11.2" print(f"### Loading: ComfyUI-Manager ({version})") required_comfyui_revision = 1793 +comfy_ui_hash = "-" cache_lock = threading.Lock()