Fix typo on conditional

'ansible_local' is not a string, but a variable.

Change-Id: I63817bb3c58a2c44d3e948bdb81005dc2e734c21
Closes-Bug: 1716663
This commit is contained in:
Jean-Philippe Evrard 2017-10-02 17:06:02 +01:00 committed by Jean-Philippe Evrard
parent f7ade4a80d
commit 427be7bb2d
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
- "need_wheel_build"
- "need_venv_build"
when:
- "('ansible_local' is not defined) or
- "(ansible_local is not defined) or
('openstack_ansible' not in ansible_local) or
('repo_build' not in ansible_local['openstack_ansible']) or
('need_wheel_build' not in ansible_local['openstack_ansible']['repo_build'])"