Commit d55012e5 by Michael DeHaan

Merge pull request #704 from lorin/gitfix

git module: Don't pass rc as separate arg to fail_json
parents 0c61d049 9253d892
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment