Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mafalb committed Jan 8, 2024
1 parent 9372e54 commit 1117c23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/python/tasks/present.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

- name: Debug
ansible.builtin.debug:
msg: "{{ [python_package[python_version]] + python_extra_packages | default([]) }}"
msg: "{{ [python_package[python_version]] + python_extra_packages[python_version] | default([]) }}"

- name: Python is present
ansible.builtin.package:
name: "{{ [python_package[python_version]] + python_extra_packages | default([]) }}"
name: "{{ [python_package[python_version]] + python_extra_packages[python_version] | default([]) }}"

...

0 comments on commit 1117c23

Please sign in to comment.