mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 09:13:12 +00:00
Merge pull request #704 from lorin/gitfix
git module: Don't pass rc as separate arg to fail_json
This commit is contained in:
@@ -42,7 +42,7 @@ def exit_json(rc=0, **kwargs):
|
||||
|
||||
def fail_json(**kwargs):
|
||||
kwargs['failed'] = True
|
||||
exit_json(rc=1, **kwargs)
|
||||
exit_json(**kwargs)
|
||||
|
||||
# ===========================================
|
||||
# convert arguments of form a=b c=d
|
||||
|
||||
Reference in New Issue
Block a user