diff options
author | Yaroslav Halchenko <debian@onerussian.com> | 2017-11-27 20:35:19 -0500 |
---|---|---|
committer | Yaroslav Halchenko <debian@onerussian.com> | 2017-11-27 20:35:19 -0500 |
commit | 6ee08fce6ec508fdc6e577e3e507b342d048fa16 (patch) | |
tree | 47b8bac37afca3878d4535d3c13db38e55242628 /git/compat.py | |
parent | 0a96030d82fa379d24b952a58eed395143950c7b (diff) | |
download | gitpython-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/compat.py')
-rw-r--r-- | git/compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/compat.py b/git/compat.py index b8045857..b63768f3 100644 --- a/git/compat.py +++ b/git/compat.py @@ -309,5 +309,5 @@ def register_surrogateescape(): try: b"100644 \x9f\0aaa".decode(defenc, "surrogateescape") -except: +except Exception: register_surrogateescape() |