diff --git a/glob/manager_core.py b/glob/manager_core.py index 82c8ac4f..8a1a3647 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -22,7 +22,7 @@ sys.path.append(glob_path) import cm_global from manager_util import * -version = [2, 25] +version = [2, 25, 1] version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '') comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) @@ -180,8 +180,7 @@ class ManagerFuncs: print(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`") return 0 - out = subprocess.check_call(cmd, cwd=cwd) - print(out) + subprocess.check_call(cmd, cwd=cwd) return 0