mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fixes an incorrect method definition (#40719)
The to_return method def in bigiq's https offload module was incorrect. This fixes it.
This commit is contained in:
@@ -394,9 +394,12 @@ class ModuleParameters(Parameters):
|
|||||||
class Changes(Parameters):
|
class Changes(Parameters):
|
||||||
def to_return(self):
|
def to_return(self):
|
||||||
result = {}
|
result = {}
|
||||||
for returnable in self.returnables:
|
try:
|
||||||
result[returnable] = getattr(self, returnable)
|
for returnable in self.returnables:
|
||||||
result = self._filter_params(result)
|
result[returnable] = getattr(self, returnable)
|
||||||
|
result = self._filter_params(result)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user