From df5c1cb715664fd7a98160844572cc473cb6b87c Mon Sep 17 00:00:00 2001 From: Kostis Anagnostopoulos Date: Sun, 2 Oct 2016 14:24:28 +0200 Subject: FIX regression by #519 on reading stdout/stderr of cmds --- git/cmd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'git/cmd.py') diff --git a/git/cmd.py b/git/cmd.py index f4f5f99a..88d62aa4 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -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, -- cgit v1.2.1