diff options
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -88,6 +88,7 @@ class Git(LazyMixin): # try to kill it try: os.kill(self.proc.pid, 2) # interrupt signal + self.proc.wait() # ensure process goes away except OSError: pass # ignore error when process already died except AttributeError: |