summaryrefslogtreecommitdiff
path: root/lib/git/exc.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-07-07 17:43:36 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-07-07 17:43:36 +0200
commitca288d443f4fc9d790eecb6e1cdf82b6cdd8dc0d (patch)
tree647089e9f091411c69ff4ee62747c53606671485 /lib/git/exc.py
parenta4287f65878000b42d11704692f9ea3734014b4c (diff)
parent01ab5b96e68657892695c99a93ef909165456689 (diff)
downloadgitpython-ca288d443f4fc9d790eecb6e1cdf82b6cdd8dc0d.tar.gz
Merge branch 'revparse'
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. """