From ce21f63f7acba9b82cea22790c773e539a39c158 Mon Sep 17 00:00:00 2001 From: "James E. King III" Date: Tue, 15 Jan 2019 16:16:33 -0500 Subject: Fix setup.py and use of requirements files. --- git/cmd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'git/cmd.py') diff --git a/git/cmd.py b/git/cmd.py index a4faefe2..1b24a626 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -220,7 +220,8 @@ class Git(LazyMixin): # - a GitCommandNotFound error is spawned by ourselves # - a PermissionError is spawned if the git executable provided # cannot be executed for whatever reason - exceptions = (GitCommandNotFound, PermissionError) + exceptions = (GitCommandNotFound, PermissionError) # noqa + # (silence erroneous flake8 F821) has_git = False try: -- cgit v1.2.1