diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-05 15:25:11 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-05 15:25:11 +0200 |
commit | 9fc7b9a068189cc0d249d0870dfb0112ab5dec92 (patch) | |
tree | 3e185c8d5028abd4dda32c14744a771f4da088e0 /git/repo/base.py | |
parent | 3fe1a7f87d511758adf2e56803cb3610b80c5f08 (diff) | |
download | gitpython-9fc7b9a068189cc0d249d0870dfb0112ab5dec92.tar.gz |
Made most primal imports work, but stopped here as there are many more changes when doing the merge
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index b8509aa7..29916986 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -14,7 +14,7 @@ from git.config import GitConfigParser from git.remote import Remote from git.db import ( GitCmdObjectDB, - GitDB + PureGitDB ) @@ -33,7 +33,7 @@ import os import sys import re -DefaultDBType = GitDB +DefaultDBType = PureGitDB if sys.version_info[1] < 5: # python 2.4 compatiblity DefaultDBType = GitCmdObjectDB # END handle python 2.4 |