diff options
author | Marcos Dione <mdione@grulic.org.ar> | 2015-08-20 00:09:26 +0200 |
---|---|---|
committer | Marcos Dione <mdione@grulic.org.ar> | 2015-08-20 00:09:26 +0200 |
commit | 332521ac1d94f743b06273e6a8daf91ce93aed7d (patch) | |
tree | 51bf54f172c732023694dd1b7e22fd053c61b3b0 /git/cmd.py | |
parent | 8324c4b38cf37af416833d36696577d8d35dce7f (diff) | |
download | gitpython-332521ac1d94f743b06273e6a8daf91ce93aed7d.tar.gz |
fix(cmd): make short options with arguments become two separate arguments for the executable.
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(): |