diff --git a/tasks/watcher_install.yml b/tasks/watcher_install.yml index 76a522f..246077d 100644 --- a/tasks/watcher_install.yml +++ b/tasks/watcher_install.yml @@ -29,7 +29,7 @@ - name: Install requires pip packages pip: - name: "{{ watcher_requires_pip_packages | join(' ') }}" + name: "{{ watcher_requires_pip_packages }}" state: "{{ watcher_pip_package_state }}" extra_args: >- {{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }} @@ -76,7 +76,7 @@ - name: Install pip packages pip: - name: "{{ watcher_pip_packages | join(' ') }}" + name: "{{ watcher_pip_packages }}" state: "{{ watcher_pip_package_state }}" virtualenv: "{{ watcher_bin | dirname }}" virtualenv_site_packages: "no"