Skip to content

Commit

Permalink
ini lookup: add 'default' to the list of parsed keys
Browse files Browse the repository at this point in the history
  • Loading branch information
jctanner authored and bcoca committed Nov 8, 2016
1 parent 5dd195b commit 20fb74b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/plugins/lookup/ini.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
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] = ''
Expand Down

0 comments on commit 20fb74b

Please sign in to comment.