From 12efdc60ab78521342f2143bdc835ee6b7fb7f03 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 10 Jul 2025 17:35:06 +0800 Subject: [PATCH] fkix --- src-tauri/src/commands/ai_video.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-tauri/src/commands/ai_video.rs b/src-tauri/src/commands/ai_video.rs index 031d523..9ed7a21 100644 --- a/src-tauri/src/commands/ai_video.rs +++ b/src-tauri/src/commands/ai_video.rs @@ -50,12 +50,12 @@ async fn execute_python_command(_app: tauri::AppHandle, args: &[String]) -> Resu match cmd.spawn() { Ok(process) => { - println!("Successfully started Python process with: {}", python_cmd); + println!("Successfully started Python process"); child = Some(process); break; } Err(e) => { - last_error = format!("Failed to start {} process: {}", python_cmd, e); + last_error = format!("Failed to process: {}", e); println!("{}", last_error); continue; }