nac3artiq: beautify python file path

This commit is contained in:
ychenfo 2021-12-27 03:21:32 +08:00
parent e32837191a
commit b8e6c18065
1 changed files with 3 additions and 1 deletions

View File

@ -91,9 +91,11 @@ impl Nac3 {
) -> PyResult<()> { ) -> PyResult<()> {
let (module_name, source_file) = Python::with_gil(|py| -> PyResult<(String, String)> { let (module_name, source_file) = Python::with_gil(|py| -> PyResult<(String, String)> {
let module: &PyAny = module.extract(py)?; let module: &PyAny = module.extract(py)?;
let os_mod = PyModule::import(py, "os")?;
let path_fun = os_mod.getattr("path")?.getattr("abspath")?;
Ok(( Ok((
module.getattr("__name__")?.extract()?, module.getattr("__name__")?.extract()?,
module.getattr("__file__")?.extract()?, path_fun.call1((module.getattr("__file__")?,))?.extract()?
)) ))
})?; })?;