summaryrefslogtreecommitdiff
path: root/gitdb/db/py/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitdb/db/py/base.py')
-rw-r--r--gitdb/db/py/base.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gitdb/db/py/base.py b/gitdb/db/py/base.py
index a9296f0..a369552 100644
--- a/gitdb/db/py/base.py
+++ b/gitdb/db/py/base.py
@@ -35,8 +35,8 @@ import sys
import os
-__all__ = ( 'PureObjectDBR', 'PureObjectDBW', 'PureRootPathDBBase', 'PureCompoundDB',
- 'NameResolveMixin', 'PureConfigurationMixin', 'PureRepositoryPathsMixin')
+__all__ = ( 'PureObjectDBR', 'PureObjectDBW', 'PureRootPathDB', 'PureCompoundDB',
+ 'PureConfigurationMixin', 'PureRepositoryPathsMixin')
class PureObjectDBR(ObjectDBR):
@@ -83,10 +83,10 @@ class PureObjectDBW(ObjectDBW):
#} END edit interface
-class PureRootPathDBBase(RootPathDBBase):
+class PureRootPathDB(RootPathDB):
def __init__(self, root_path):
- super(PureRootPathDBBase, self).__init__()
+ super(PureRootPathDB, self).__init__(root_path)
self._root_path = root_path