Fix calling deprecate with correct arguments (#44726)

This fixes #44702
This commit is contained in:
Dag Wieers 2018-09-21 18:30:31 +02:00 committed by Brian Coca
parent 574ed8dc7f
commit 66eec42f53

View file

@ -2327,6 +2327,8 @@ class AnsibleModule(object):
for d in kwargs['deprecations']:
if isinstance(d, SEQUENCETYPE) and len(d) == 2:
self.deprecate(d[0], version=d[1])
elif isinstance(d, Mapping):
self.deprecate(d['msg'], version=d.get('version', None))
else:
self.deprecate(d)
else: