From bed3b0989730cdc3f513884325f1447eb378aaee Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 16 Nov 2014 21:06:57 +0100 Subject: pep8 linting (double spaces before comment) E261 at least two spaces before inline comment --- git/cmd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git/cmd.py') 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: -- cgit v1.2.1