git module: Don't pass rc as separate arg to fail_json
This commit is contained in:
parent
1165866ecb
commit
b56927874a
1 changed files with 1 additions and 1 deletions
2
git
2
git
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue