ini lookup: add 'default' to the list of parsed keys
Fixes #18369
(cherry picked from commit 20fb74b1b1
)
This commit is contained in:
parent
9499ed5360
commit
c920c8bc3b
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ from ansible.module_utils._text import to_bytes, to_text
|
|||
def _parse_params(term):
|
||||
'''Safely split parameter term to preserve spaces'''
|
||||
|
||||
keys = ['key', 'type', 'section', 'file', 're']
|
||||
keys = ['key', 'type', 'section', 'file', 're', 'default']
|
||||
params = {}
|
||||
for k in keys:
|
||||
params[k] = ''
|
||||
|
|
Loading…
Add table
Reference in a new issue