fix
This commit is contained in:
parent
12efdc60ab
commit
6fc4c8ba97
|
|
@ -52,12 +52,10 @@ async fn execute_python_command(_app: tauri::AppHandle, args: &[String]) -> Resu
|
||||||
Ok(process) => {
|
Ok(process) => {
|
||||||
println!("Successfully started Python process");
|
println!("Successfully started Python process");
|
||||||
child = Some(process);
|
child = Some(process);
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
last_error = format!("Failed to process: {}", e);
|
last_error = format!("Failed to process: {}", e);
|
||||||
println!("{}", last_error);
|
println!("{}", last_error);
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue