diff options
author | Antoine Musso <hashar@free.fr> | 2014-11-16 21:06:57 +0100 |
---|---|---|
committer | Antoine Musso <hashar@free.fr> | 2014-11-16 21:06:57 +0100 |
commit | bed3b0989730cdc3f513884325f1447eb378aaee (patch) | |
tree | dced9fc6823d9a7b99e8b8b47e31d25e49ed7d26 /git/cmd.py | |
parent | 614907b7445e2ed8584c1c37df7e466e3b56170f (diff) | |
download | gitpython-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |