From b56927874a347392929473a48cec98d5c778dce4 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Fri, 27 Jul 2012 08:40:05 -0400 Subject: [PATCH] git module: Don't pass rc as separate arg to fail_json --- git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git b/git index 31bb12c7aba..6bbd0f6f03b 100755 --- a/git +++ b/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