Skip to content

Commit ce388f6

Browse files
authored
Fix conda env trace message
fixes #240
1 parent 159451f commit ce388f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/pet-conda/src/environments.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ pub fn get_conda_environment_info(
6464
if conda_dir.exists() {
6565
trace!(
6666
"Conda install folder {}, found, & will be used for the Conda Env: {}",
67-
env_path.display(),
6867
conda_dir.display()
68+
env_path.display(),
6969
);
7070
} else {
7171
warn!(
7272
"Conda install folder {}, does not exist, hence will not be used for the Conda Env: {}",
73-
env_path.display(),
7473
conda_dir.display()
74+
env_path.display(),
7575
);
7676
conda_install_folder = None;
7777
}

0 commit comments

Comments
 (0)