diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-07-06 00:35:30 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-07-06 00:35:30 +0200 |
commit | f963881e53a9f0a2746a11cb9cdfa82eb1f90d8c (patch) | |
tree | ea69501e471b2bc724b641cb360f1b15c095c9d6 /lib/git/exc.py | |
parent | a4287f65878000b42d11704692f9ea3734014b4c (diff) | |
download | gitpython-f963881e53a9f0a2746a11cb9cdfa82eb1f90d8c.tar.gz |
Initial version of the rev-parse routine, which doesn't work too bad, but its still rather slow and many tests are not yet implemented
Diffstat (limited to 'lib/git/exc.py')
-rw-r--r-- | lib/git/exc.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/git/exc.py b/lib/git/exc.py index 93919d5e..d2cb8d7e 100644 --- a/lib/git/exc.py +++ b/lib/git/exc.py @@ -1,10 +1,12 @@ -# errors.py +# exc.py # 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 """ Module containing all exceptions thrown througout the git package, """ +from gitdb.exc import * + class InvalidGitRepositoryError(Exception): """ Thrown if the given repository appears to have an invalid format. """ |