summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorAntoine Musso <hashar@free.fr>2014-11-16 21:06:57 +0100
committerAntoine Musso <hashar@free.fr>2014-11-16 21:06:57 +0100
commitbed3b0989730cdc3f513884325f1447eb378aaee (patch)
treedced9fc6823d9a7b99e8b8b47e31d25e49ed7d26 /git/cmd.py
parent614907b7445e2ed8584c1c37df7e466e3b56170f (diff)
downloadgitpython-bed3b0989730cdc3f513884325f1447eb378aaee.tar.gz
pep8 linting (double spaces before comment)
E261 at least two spaces before inline comment
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 447963d7..3ec5a480 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -92,7 +92,7 @@ class Git(LazyMixin):
os.kill(self.proc.pid, 2) # interrupt signal
self.proc.wait() # ensure process goes away
except OSError:
- pass # ignore error when process already died
+ pass # ignore error when process already died
except AttributeError:
# try windows
# for some reason, providing None for stdout/stderr still prints something. This is why
@@ -348,7 +348,7 @@ class Git(LazyMixin):
stdin=istream,
stderr=PIPE,
stdout=PIPE,
- close_fds=(os.name == 'posix'),# unsupported on linux
+ close_fds=(os.name == 'posix'), # unsupported on linux
**subprocess_kwargs
)
if as_process: