Skip to content

Commit 0de2617

Browse files
committed
Fix path display
1 parent 47bae36 commit 0de2617

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/hexora_io/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pub struct PythonFile {
5656
impl PythonFile {
5757
pub fn full_path(&self) -> String {
5858
match &self.archive_path {
59-
Some(zp) => format!("{}:{}", self.file_path.display(), zp.display()),
59+
Some(zp) => format!("{}:{}", zp.display(), self.file_path.display()),
6060
None => self.file_path.display().to_string(),
6161
}
6262
}

0 commit comments

Comments
 (0)