Remove trailing space
This commit is contained in:
parent
99616d0c80
commit
4f1f13b100
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ def changed(*a, **kw):
|
||||||
if not 'changed' in item:
|
if not 'changed' in item:
|
||||||
changed = False
|
changed = False
|
||||||
if ('results' in item # some modules return a 'results' key
|
if ('results' in item # some modules return a 'results' key
|
||||||
and type(item['results']) == list
|
and type(item['results']) == list
|
||||||
and type(item['results'][0]) == dict):
|
and type(item['results'][0]) == dict):
|
||||||
for result in item['results']:
|
for result in item['results']:
|
||||||
changed = changed or result.get('changed', False)
|
changed = changed or result.get('changed', False)
|
||||||
|
|
Loading…
Reference in a new issue