diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-02 14:24:28 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-02 14:30:02 +0200 |
commit | df5c1cb715664fd7a98160844572cc473cb6b87c (patch) | |
tree | 3844da31fa8a15c0b2ab687038911ec0f5a75b61 /git/cmd.py | |
parent | b3b9c0242ba2893231e0ab1c13fa2a0c8a9cfc59 (diff) | |
download | gitpython-df5c1cb715664fd7a98160844572cc473cb6b87c.tar.gz |
FIX regression by #519 on reading stdout/stderr of cmds
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -539,7 +539,8 @@ class Git(LazyMixin): cmd_not_found_exception = OSError # end handle - log.debug("Popen(%s, cwd=%s, universal_newlines=%s", command, cwd, universal_newlines) + log.debug("Popen(%s, cwd=%s, universal_newlines=%s, shell=%s)", + command, cwd, universal_newlines, shell) try: proc = Popen(command, env=env, |