Update python_util.rs

This commit is contained in:
Shunsuke Shibayama 2022-08-11 12:09:39 +09:00
parent 1f07d8fc1a
commit 492d94959b

View file

@ -18,6 +18,7 @@ pub fn which_python() -> String {
if res == "" {
panic!("python not found");
}
dbg!(&res);
res
}