Skip to content

Commit 332521a

Browse files
committed
fix(cmd): make short options with arguments become two separate arguments for the executable.
1 parent 8324c4b commit 332521a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎git/cmd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ def custom_environment(self, **kwargs):
700700
finally:
701701
self.update_environment(**old_env)
702702

703-
def transform_kwargs(self, split_single_char_options=False, **kwargs):
703+
def transform_kwargs(self, split_single_char_options=True, **kwargs):
704704
"""Transforms Python style kwargs into git command line options."""
705705
args = list()
706706
for k, v in kwargs.items():

0 commit comments

Comments
 (0)