summaryrefslogtreecommitdiff
path: root/git/db/py/ref.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-05-30 17:16:18 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-05-30 17:16:18 +0200
commit4ea529dd7f545dddc8cfdfdb4b6209eef0494ec5 (patch)
tree54f10940a7dfbc2899f3ac20e3f6e40002715be0 /git/db/py/ref.py
parent1f71ed94578799ee1667ba54b66a369e307f415b (diff)
downloadgitpython-4ea529dd7f545dddc8cfdfdb4b6209eef0494ec5.tar.gz
Fixed pure python implementation to run the default repository tests
Diffstat (limited to 'git/db/py/ref.py')
-rw-r--r--git/db/py/ref.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/db/py/ref.py b/git/db/py/ref.py
index 94887fb8..d2c77a3a 100644
--- a/git/db/py/ref.py
+++ b/git/db/py/ref.py
@@ -31,8 +31,8 @@ class PureReferenceDB(PureCompoundDB):
dbcls = self.ObjectDBCls
if dbcls is None:
# late import
- from complex import PureGitODB # TODO: This should be a configurable for flexibility
- dbcls = PureGitODB
+ import complex
+ dbcls = complex.PureGitODB
# END get db type
# try to get as many as possible, don't fail if some are unavailable