summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPratik Anurag <panurag247365@gmail.com>2019-10-15 19:31:31 +0530
committerSebastian Thiel <sebastian.thiel@icloud.com>2019-10-15 18:42:45 +0200
commit8f2b40d74c67c6fa718f9079654386ab333476d5 (patch)
treec81ff2d5f79381f83bb058f206ba9f50e6a8caaa
parentba169916b4cc6053b610eda6429446c375295d78 (diff)
downloadgitpython-8f2b40d74c67c6fa718f9079654386ab333476d5.tar.gz
removed Unnecessary pass statement
-rw-r--r--git/cmd.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 50b1e321..2d288b25 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -375,7 +375,6 @@ class Git(LazyMixin):
proc.wait() # ensure process goes away
except OSError as ex:
log.info("Ignored error after process had died: %r", ex)
- 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