mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-02 19:32:47 +00:00
fix code typo (#20478)
This commit is contained in:
@@ -78,7 +78,7 @@ class LookupModule(LookupBase):
|
||||
elif isinstance(result, dict):
|
||||
new_dict = {}
|
||||
for key in result.keys():
|
||||
value = reslut[key] # python2 and 3 compatible....
|
||||
value = result[key] # python2 and 3 compatible....
|
||||
new_dict[key] = self.convert_mongo_result_to_valid_json(value)
|
||||
return new_dict
|
||||
elif isinstance(result, datetime.datetime):
|
||||
|
||||
Reference in New Issue
Block a user