fkix
This commit is contained in:
parent
6fdd1b280d
commit
12efdc60ab
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue