summaryrefslogtreecommitdiff
path: root/git/repo/base.py
diff options
context:
space:
mode:
authorYaroslav Halchenko <debian@onerussian.com>2017-11-27 20:35:19 -0500
committerYaroslav Halchenko <debian@onerussian.com>2017-11-27 20:35:19 -0500
commit6ee08fce6ec508fdc6e577e3e507b342d048fa16 (patch)
tree47b8bac37afca3878d4535d3c13db38e55242628 /git/repo/base.py
parent0a96030d82fa379d24b952a58eed395143950c7b (diff)
downloadgitpython-6ee08fce6ec508fdc6e577e3e507b342d048fa16.tar.gz
RF: primarily flake8 lints + minor RF to reduce duplication in PATHEXT
I did keep some "bare" except with catch all Exception: , while tried to disable flake8 complaints where clearly all exceptions are to be catched
Diffstat (limited to 'git/repo/base.py')
-rw-r--r--git/repo/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index 990def64..2fbae012 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -203,7 +203,7 @@ class Repo(object):
def __del__(self):
try:
self.close()
- except:
+ except Exception:
pass
def close(self):