mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Don't shellquote executable names
Quoting the executable results in a traceback on Linux systems (because the quotes added by shellquote are considered part of the executable name), and is unnecessary on Windows systems. This fixes #1240.
This commit is contained in:
+1
-1
@@ -542,7 +542,7 @@ def resolve_deps(deps, which, which_pip, project, sources=None, verbose=False, p
|
||||
markers_lookup = {}
|
||||
|
||||
python_path = which('python', allow_global=allow_global)
|
||||
backup_python_path = shellquote(sys.executable)
|
||||
backup_python_path = sys.executable
|
||||
|
||||
results = []
|
||||
|
||||
|
||||
Reference in New Issue
Block a user