Merge "Remove join filter from pip module tasks"

This commit is contained in:
Jenkins 2016-11-10 09:55:27 +00:00 committed by Gerrit Code Review
commit cea2964d7d
1 changed files with 2 additions and 2 deletions

View File

@ -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"