From cc848d256369b01ffa9c6e1cb1c0001e6d828dcf Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Wed, 11 Oct 2023 04:27:52 -0400 Subject: [PATCH] Fix small #1662 regression due to #1659 When #1659 was updated to pick up linting configuration changes, it inadvertently undid one of the URL changes made in #1662, putting the URL in the git.exc module back to the one that redirects to a different BSD license from the one this project uses. Since only that one module was affected, the fix is simple. This only changes the URL back; it doesn't undo any other #1659 changes. --- git/exc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/exc.py b/git/exc.py index 5110d502d..b4ffe7568 100644 --- a/git/exc.py +++ b/git/exc.py @@ -2,7 +2,7 @@ # Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under -# the BSD License: http://www.opensource.org/licenses/bsd-license.php +# the BSD License: https://opensource.org/license/bsd-3-clause/ """ Module containing all exceptions thrown throughout the git package """ from gitdb.exc import ( # noqa: @UnusedImport