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(),
status=dict(),
assignee=dict(),
fields=dict(default={})
fields=dict(default={}, type='dict')
),
supports_check_mode=False
)