From dfa0eac1578bff14a8f7fa00bfc3c57aba24f877 Mon Sep 17 00:00:00 2001 From: Ben Thayer Date: Tue, 22 Oct 2019 14:39:50 -0500 Subject: Added exception handling for WinError6 --- git/cmd.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'git/cmd.py') diff --git a/git/cmd.py b/git/cmd.py index 263c8ba7..484a0181 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -365,8 +365,11 @@ class Git(LazyMixin): proc.stderr.close() # did the process finish already so we have a return code ? - if proc.poll() is not None: - return + try: + if proc.poll() is not None: + return + except OSError as ex: + log.info("Ignored error after process had died: %r", ex) # can be that nothing really exists anymore ... if os is None or getattr(os, 'kill', None) is None: -- cgit v1.2.1