diff options
author | Barry Scott <barry@barrys-emacs.org> | 2016-06-13 15:36:51 +0100 |
---|---|---|
committer | Barry Scott <barry@barrys-emacs.org> | 2016-06-13 15:36:51 +0100 |
commit | a7f403b1e82d4ada20d0e747032c7382e2a6bf63 (patch) | |
tree | e1daf710fd50a67219ff87d3b75c735fceddade6 /git/cmd.py | |
parent | e0eafc47c307ff0bf589ce43b623bd24fad744fd (diff) | |
download | gitpython-a7f403b1e82d4ada20d0e747032c7382e2a6bf63.tar.gz |
fix flake8 found problems
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -614,7 +614,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 |