From 332521ac1d94f743b06273e6a8daf91ce93aed7d Mon Sep 17 00:00:00 2001 From: Marcos Dione Date: Thu, 20 Aug 2015 00:09:26 +0200 Subject: fix(cmd): make short options with arguments become two separate arguments for the executable. --- git/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git/cmd.py') diff --git a/git/cmd.py b/git/cmd.py index 31865d09..3cdc68ab 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -700,7 +700,7 @@ class Git(LazyMixin): finally: self.update_environment(**old_env) - def transform_kwargs(self, split_single_char_options=False, **kwargs): + def transform_kwargs(self, split_single_char_options=True, **kwargs): """Transforms Python style kwargs into git command line options.""" args = list() for k, v in kwargs.items(): -- cgit v1.2.1