diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-30 17:16:18 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-30 17:16:18 +0200 |
commit | 4ea529dd7f545dddc8cfdfdb4b6209eef0494ec5 (patch) | |
tree | 54f10940a7dfbc2899f3ac20e3f6e40002715be0 /git/db/py/complex.py | |
parent | 1f71ed94578799ee1667ba54b66a369e307f415b (diff) | |
download | gitpython-4ea529dd7f545dddc8cfdfdb4b6209eef0494ec5.tar.gz |
Fixed pure python implementation to run the default repository tests
Diffstat (limited to 'git/db/py/complex.py')
-rw-r--r-- | git/db/py/complex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/db/py/complex.py b/git/db/py/complex.py index a51118b3..d5c185f3 100644 --- a/git/db/py/complex.py +++ b/git/db/py/complex.py @@ -38,7 +38,7 @@ import os __all__ = ('PureGitODB', 'PurePartialGitDB', 'PureCompatibilityGitDB') -class PureGitODB(PureRootPathDB, PureObjectDBW, PureCompoundDB): +class PureGitODB(PureRootPathDB, PureObjectDBW, PureCompoundDB, PureAlternatesFileMixin): """A git-style object-only database, which contains all objects in the 'objects' subdirectory. :note: The type needs to be initialized on the ./objects directory to function, @@ -105,7 +105,7 @@ class PureGitODB(PureRootPathDB, PureObjectDBW, PureCompoundDB): class PurePartialGitDB(PureGitODB, PureRepositoryPathsMixin, PureConfigurationMixin, - PureReferencesMixin, PureSubmoduleDB, PureAlternatesFileMixin, + PureReferencesMixin, PureSubmoduleDB, PureIndexDB, PureTransportDB # HighLevelRepository Currently not implemented ! ): |