From f164627a85ed7b816759871a76db258515b85678 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 20 Jun 2010 20:17:25 +0200 Subject: db: added pure python git database repo: now has the option to use the pure python git database implementation, which is currently not used though --- lib/git/db.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/git/db.py') diff --git a/lib/git/db.py b/lib/git/db.py index 4e860bb6..f3698b76 100644 --- a/lib/git/db.py +++ b/lib/git/db.py @@ -4,9 +4,10 @@ from gitdb.base import ( OStream ) +from gitdb.db import GitDB from gitdb.db import LooseObjectDB -__all__ = ('GitCmdObjectDB', ) +__all__ = ('GitCmdObjectDB', 'GitDB' ) #class GitCmdObjectDB(CompoundDB, ObjectDBW): class GitCmdObjectDB(LooseObjectDB): -- cgit v1.2.3