mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 08:09:10 +02:00
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:
committed by
Brad Warren
parent
7352727a65
commit
ad885afdb8
@@ -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:')
|
||||
|
||||
Reference in New Issue
Block a user