diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-06-14 07:29:12 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-06-14 07:29:12 +0200 |
commit | 4510b3c42b85305c95c1f39be2b9872be52c2e5e (patch) | |
tree | 35710a3931ee1cded348a911a0e6beff02662e4f /git/cmd.py | |
parent | d5739cd466f77a60425bd2860895799f7c9359d9 (diff) | |
download | gitpython-4510b3c42b85305c95c1f39be2b9872be52c2e5e.tar.gz |
fix(flake): misc whitespace fixes
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 |