summaryrefslogtreecommitdiff
path: root/lib/git/exc.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/exc.py')
-rw-r--r--lib/git/exc.py4
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. """