From 4ea529dd7f545dddc8cfdfdb4b6209eef0494ec5 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Mon, 30 May 2011 17:16:18 +0200 Subject: Fixed pure python implementation to run the default repository tests --- git/db/py/ref.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git/db/py/ref.py') 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 -- cgit v1.2.1