In django module if no virtualenv is specified, don't choke
This commit is contained in:
parent
955b6001f6
commit
e7c293ae67
1 changed files with 3 additions and 0 deletions
|
@ -109,7 +109,10 @@ def _fail(module, cmd, out, err, **kwargs):
|
|||
|
||||
|
||||
def _ensure_virtualenv(module):
|
||||
|
||||
venv_param = module.params['virtualenv']
|
||||
if venv_param is None:
|
||||
return
|
||||
|
||||
virtualenv = module.get_bin_path('virtualenv', True)
|
||||
|
||||
|
|
Loading…
Reference in a new issue