debug info

This commit is contained in:
2025-02-24 19:55:21 +01:00
parent 1da4292952
commit 2ad62b12f0
+1 -1
View File
@@ -36,6 +36,6 @@ pub fn start(args: String) -> PyResult<()> {
fn get_code(path: &str) -> String {
return fs::read_to_string(path)
.expect("Failed to read Python file.")
.expect(&format!("Failed to read Python file.\nPath: {}", path))
.to_string();
}