Fix KeyError which occurs when not-existing entry is tried to be removed. Fixes #11109
This commit is contained in:
parent
b47d1d7e69
commit
2945a462f6
1 changed files with 2 additions and 2 deletions
|
@ -189,9 +189,9 @@ class Task(object):
|
|||
|
||||
if 'su' in ds:
|
||||
self.become=ds['su']
|
||||
del ds['su']
|
||||
else:
|
||||
self.become=True
|
||||
del ds['su']
|
||||
if 'su_user' in ds:
|
||||
self.become_user = ds['su_user']
|
||||
del ds['su_user']
|
||||
|
@ -260,7 +260,7 @@ class Task(object):
|
|||
|
||||
self.items_lookup_plugin = ds.get('items_lookup_plugin', None)
|
||||
self.items_lookup_terms = ds.get('items_lookup_terms', None)
|
||||
|
||||
|
||||
|
||||
self.ignore_errors = ds.get('ignore_errors', False)
|
||||
self.any_errors_fatal = ds.get('any_errors_fatal', play.any_errors_fatal)
|
||||
|
|
Loading…
Reference in a new issue