mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
use home path expansion for virtualenv param in django_manage module
This commit is contained in:
parent
4d1f447908
commit
4db4607ee5
1 changed files with 3 additions and 3 deletions
|
@ -131,7 +131,7 @@ def _ensure_virtualenv(module):
|
|||
|
||||
virtualenv = module.get_bin_path('virtualenv', True)
|
||||
|
||||
vbin = os.path.join(venv_param, 'bin')
|
||||
vbin = os.path.join(os.path.expanduser(venv_param), 'bin')
|
||||
activate = os.path.join(vbin, 'activate')
|
||||
|
||||
if not os.path.exists(activate):
|
||||
|
|
Loading…
Reference in a new issue