mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Don't escape spaces as it brakes mappings and they are escaped later in GeneralCommandLine (PY-12550).
This commit is contained in:
@@ -879,7 +879,7 @@ public class PyPackageManagerImpl extends PyPackageManager {
|
||||
}
|
||||
|
||||
private static String quoteIfNeeded(String arg) {
|
||||
return arg.replace(" ", "\\ ").replace("<", "\\<").replace(">", "\\>");
|
||||
return arg.replace("<", "\\<").replace(">", "\\>"); //TODO: move this logic to ParametersListUtil.encode
|
||||
}
|
||||
|
||||
@NotNull
|
||||
|
||||
Reference in New Issue
Block a user