summaryrefslogtreecommitdiff
path: root/git/db/py/complex.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/db/py/complex.py')
-rw-r--r--git/db/py/complex.py4
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 !
):