summaryrefslogtreecommitdiff
path: root/lib/git/repo.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-29 20:00:46 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-29 20:00:46 +0200
commit77cd6659b64cb1950a82e6a3cccdda94f15ae739 (patch)
tree209b8828310e4926b200152b85ff3b7dbd7a2e1e /lib/git/repo.py
parent791765c0dc2d00a9ffa4bc857d09f615cfe3a759 (diff)
downloadgitpython-77cd6659b64cb1950a82e6a3cccdda94f15ae739.tar.gz
Renamed modules utils to util, and errors to exc to be more conforming to the submodules's naming conventions
Diffstat (limited to 'lib/git/repo.py')
-rw-r--r--lib/git/repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/repo.py b/lib/git/repo.py
index 2df2cb6c..d9b943cd 100644
--- a/lib/git/repo.py
+++ b/lib/git/repo.py
@@ -4,7 +4,7 @@
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
-from errors import InvalidGitRepositoryError, NoSuchPathError
+from exc import InvalidGitRepositoryError, NoSuchPathError
from cmd import Git
from objects import Actor
from refs import *