From 6b3e539d51b7578b70df297683a417f1b6019d29 Mon Sep 17 00:00:00 2001 From: bilt Date: Mon, 7 Jul 2025 23:41:18 +0800 Subject: [PATCH] return (url,) --- comfy_extras/nodes_video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_video.py b/comfy_extras/nodes_video.py index 8e3a653ee..4cacd7eb8 100644 --- a/comfy_extras/nodes_video.py +++ b/comfy_extras/nodes_video.py @@ -175,7 +175,7 @@ class SaveVideo(ComfyNodeABC): url = f'Click to open Video: {final_file_path}' # 只返回url到ui.text - return (url) + return (url,) class CreateVideo(ComfyNodeABC): @classmethod