summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-06-14 07:29:12 +0200
committerSebastian Thiel <byronimo@gmail.com>2016-06-14 07:29:12 +0200
commit4510b3c42b85305c95c1f39be2b9872be52c2e5e (patch)
tree35710a3931ee1cded348a911a0e6beff02662e4f /git/cmd.py
parentd5739cd466f77a60425bd2860895799f7c9359d9 (diff)
downloadgitpython-4510b3c42b85305c95c1f39be2b9872be52c2e5e.tar.gz
fix(flake): misc whitespace fixes
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 9a141297..82434673 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -14,7 +14,6 @@ import errno
import mmap
from git.odict import OrderedDict
-
from contextlib import contextmanager
import signal
from subprocess import (
@@ -614,7 +613,7 @@ class Git(LazyMixin):
cwd=cwd,
bufsize=-1,
stdin=istream,
- stderr=PIPE,
+ stderr=PIPE,
stdout=PIPE if with_stdout else open(os.devnull, 'wb'),
shell=self.USE_SHELL,
close_fds=(os.name == 'posix'), # unsupported on windows