This commit is contained in:
root 2025-07-10 17:35:06 +08:00
parent 6fdd1b280d
commit 12efdc60ab
1 changed files with 2 additions and 2 deletions

View File

@ -50,12 +50,12 @@ async fn execute_python_command(_app: tauri::AppHandle, args: &[String]) -> Resu
match cmd.spawn() { match cmd.spawn() {
Ok(process) => { Ok(process) => {
println!("Successfully started Python process with: {}", python_cmd); println!("Successfully started Python process");
child = Some(process); child = Some(process);
break; break;
} }
Err(e) => { Err(e) => {
last_error = format!("Failed to start {} process: {}", python_cmd, e); last_error = format!("Failed to process: {}", e);
println!("{}", last_error); println!("{}", last_error);
continue; continue;
} }