summaryrefslogtreecommitdiff
path: root/lib/git/repo.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-23 13:49:05 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-23 13:49:05 +0200
commitaea0243840a46021e6f77c759c960a06151d91c9 (patch)
tree54009e17043813dbab91df474e78b364be0e8f4c /lib/git/repo.py
parentc0ef65b43688b1a4615a1e7332f6215f9a8abb19 (diff)
downloadgitpython-aea0243840a46021e6f77c759c960a06151d91c9.tar.gz
Added test for aggressive_tree_merge
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 f97126ea..79275106 100644
--- a/lib/git/repo.py
+++ b/lib/git/repo.py
@@ -742,7 +742,7 @@ class Repo(object):
# we at least give a proper error instead of letting git fail
prev_cwd = None
prev_path = None
- odbt = kwargs.pop('odbt', GitCmdObjectDB)
+ odbt = kwargs.pop('odbt', type(self.odb))
if os.name == 'nt':
if '~' in path:
raise OSError("Git cannot handle the ~ character in path %r correctly" % path)