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:
parent
138f2cd847
commit
52e14bd172
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ def main():
|
|||
comment=dict(),
|
||||
status=dict(),
|
||||
assignee=dict(),
|
||||
fields=dict(default={})
|
||||
fields=dict(default={}, type='dict')
|
||||
),
|
||||
supports_check_mode=False
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue