1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

jira: Specify the correct argument type (#3368)

By default, all arguments are considered strings, but the module code expects the `fields` parameter to be a proper Python dictionary.

Fixes #2600
This commit is contained in:
Michael Ansel 2016-11-05 03:17:49 -07:00 committed by Matt Clay
parent 138f2cd847
commit 52e14bd172

View file

@ -311,7 +311,7 @@ def main():
comment=dict(), comment=dict(),
status=dict(), status=dict(),
assignee=dict(), assignee=dict(),
fields=dict(default={}) fields=dict(default={}, type='dict')
), ),
supports_check_mode=False supports_check_mode=False
) )