summaryrefslogtreecommitdiff
path: root/git/exc.py
diff options
context:
space:
mode:
authorSantos Gallegos <stsewd@proton.me>2022-12-23 20:19:52 -0500
committerSantos Gallegos <stsewd@proton.me>2022-12-23 20:40:06 -0500
commite6108c7997f5c8f7361b982959518e982b973230 (patch)
treed3ae83312f7253192302ec1c71763c64eaa1d364 /git/exc.py
parent2625ed9fc074091c531c27ffcba7902771130261 (diff)
downloadgitpython-e6108c7997f5c8f7361b982959518e982b973230.tar.gz
Block unsafe options and protocols by default
Diffstat (limited to 'git/exc.py')
-rw-r--r--git/exc.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/git/exc.py b/git/exc.py
index b696d792..9b69a588 100644
--- a/git/exc.py
+++ b/git/exc.py
@@ -37,8 +37,12 @@ class NoSuchPathError(GitError, OSError):
"""Thrown if a path could not be access by the system."""
-class UnsafeOptionsUsedError(GitError):
- """Thrown if unsafe protocols or options are passed without overridding."""
+class UnsafeProtocolError(GitError):
+ """Thrown if unsafe protocols are passed without being explicitly allowed."""
+
+
+class UnsafeOptionError(GitError):
+ """Thrown if unsafe options are passed without being explicitly allowed."""
class CommandError(GitError):