summaryrefslogtreecommitdiff
path: root/git/exc.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-05-30 16:32:56 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-05-30 16:32:56 +0200
commit1f71ed94578799ee1667ba54b66a369e307f415b (patch)
treef8e1c3a8507b5306a6a04efa94ffec3c22731bcc /git/exc.py
parent024adf37acddd6a5d8293b6b5d15795c59a142c0 (diff)
downloadgitpython-1f71ed94578799ee1667ba54b66a369e307f415b.tar.gz
git cmd implementation of repository appears to work, at least this is what the test suggests. Pure python implementation still has some trouble, but this should be very fixable
Diffstat (limited to 'git/exc.py')
-rw-r--r--git/exc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/exc.py b/git/exc.py
index 412f82f0..e14fb7f1 100644
--- a/git/exc.py
+++ b/git/exc.py
@@ -43,11 +43,11 @@ class UnsupportedOperation(ODBError):
"""Thrown if the given operation cannot be supported by the object database"""
-class InvalidGitRepositoryError(GitPythonError):
+class InvalidGitRepositoryError(InvalidDBRoot):
""" Thrown if the given repository appears to have an invalid format. """
-class NoSuchPathError(GitPythonError):
+class NoSuchPathError(InvalidDBRoot):
""" Thrown if a path could not be access by the system. """