From 1f71ed94578799ee1667ba54b66a369e307f415b Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Mon, 30 May 2011 16:32:56 +0200 Subject: 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 --- git/exc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git/exc.py') 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. """ -- cgit v1.2.1