Skip to content

Commit

Permalink
fix(python): force precompiled setting warning message syntax (#3850)
Browse files Browse the repository at this point in the history
  • Loading branch information
scop authored Dec 27, 2024
1 parent 0568768 commit 6d2c94c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/core/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ impl PythonPlugin {
if available.is_empty() {
debug!("no precompiled python found for {}", tv.version);
} else {
warn!("no precompiled python found for {}, force mise to use a precompiled version with `mise settings set python.compile=false`", tv.version);
warn!("no precompiled python found for {}, force mise to use a precompiled version with `mise settings set python.compile false`", tv.version);
}
trace!(
"available precompiled versions: {}",
Expand Down

0 comments on commit 6d2c94c

Please sign in to comment.