Correct venv3 detection on windows (#6490)

A little typo in the _venv_common.py block the script to finish correctly once the virtual environment has been setup on Windows.

This PR fixes that.
This commit is contained in:
Adrien Ferrand
2018-11-09 16:17:17 -08:00
committed by Brad Warren
parent 7352727a65
commit ad885afdb8
+1 -1
View File
@@ -55,7 +55,7 @@ def main(venv_name, venv_args, args):
print('Please run the following command to activate developer environment:')
print('source {0}/bin/activate'.format(venv_name))
print('-------------------------------------------------------------------')
elif os.path.isdir(os.path.join(venv_args, 'Scripts')):
elif os.path.isdir(os.path.join(venv_name, 'Scripts')):
# Windows specific
print('---------------------------------------------------------------------------')
print('Please run one of the following commands to activate developer environment:')