Merge pull request #52973 from twangboy/fix_test_pip_state

Fix `integration.states.test_pip_state.PipStateTest.test_issue_2028_pip_installed_state` on Windows
This commit is contained in:
Shane Lee 2019-05-13 14:56:27 -06:00 committed by GitHub
commit ce099aaa46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -172,5 +172,5 @@ def get_python_executable():
python_binary = None
except AttributeError:
# We're not running inside a virtualenv
python_binary = None
python_binary = sys.executable
return python_binary