From 7506c7baed52076c2ce983cb72d5968c32aa59b7 Mon Sep 17 00:00:00 2001 From: Silver <65376327+silveroxides@users.noreply.github.com> Date: Thu, 5 Mar 2026 11:33:05 +0100 Subject: [PATCH] Fix string not being f-string when printing logging error --- comfy/quant_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/quant_ops.py b/comfy/quant_ops.py index a06c532be..22321f5de 100644 --- a/comfy/quant_ops.py +++ b/comfy/quant_ops.py @@ -28,7 +28,7 @@ try: import triton logging.info(f"Found triton package installed. Enabling comfy-kitchen triton backend.") except ImportError as e: - logging.error("Failed to import triton, Error: {e}, the comfy-kitchen triton backend will not be available.") + logging.error(f"Failed to import triton, Error: {e}, the comfy-kitchen triton backend will not be available.") ck.registry.disable("triton") else: ck.registry.disable("triton")