We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4330f97 commit 7fdb878Copy full SHA for 7fdb878
crates/uv/src/commands/venv.rs
@@ -368,7 +368,7 @@ async fn venv_impl(
368
/// Quote a path, if necessary, for safe use in a POSIX-compatible shell command.
369
fn shlex_posix(executable: impl AsRef<Path>) -> String {
370
// Convert to a display path.
371
- let executable = executable.as_ref().user_display().to_string();
+ let executable = executable.as_ref().portable_display().to_string();
372
373
// Like Python's `shlex.quote`:
374
// > Use single quotes, and put single quotes into double quotes
0 commit comments