Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(python): force precompiled setting warning message syntax
  • Loading branch information
scop committed Dec 27, 2024
commit 1000a063066db3a8dd9df20c00ff69f04e25b2cd
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