summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py3
1 files changed, 2 insertions, 1 deletions
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,