From 843f97b649722f22aeb0ea72d0b68d3db7428baa Mon Sep 17 00:00:00 2001 From: Alexis Rolland Date: Tue, 7 Jul 2026 15:26:37 +0800 Subject: [PATCH] Update comfy_api_nodes/util/upload_helpers.py --- comfy_api_nodes/util/upload_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api_nodes/util/upload_helpers.py b/comfy_api_nodes/util/upload_helpers.py index 68e8ff0e3..f7029ee78 100644 --- a/comfy_api_nodes/util/upload_helpers.py +++ b/comfy_api_nodes/util/upload_helpers.py @@ -163,7 +163,7 @@ async def upload_video_to_comfyapi( except Exception as e: raise ValueError( f"Could not convert the input video to {container.value.upper()} for upload; " - f"the file may be corrupt or use an unsupported codec. " + f"the file may be corrupted or use an unsupported codec. " f"Try re-exporting it as MP4 (H.264). Original error: {e}" ) from e video_bytes_io.seek(0)