We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0408f0 commit 0573b15Copy full SHA for 0573b15
roundup/backends/sessions_dbm.py
@@ -46,7 +46,7 @@ def clear(self):
46
os.remove(path+".dir")
47
os.remove(path+".dat")
48
49
- self._db_type = None
+ #self._db_type = None
50
51
def cache_db_type(self, path):
52
''' determine which DB wrote the class file, and cache it as an
@@ -148,7 +148,7 @@ def opendb(self, mode):
148
# new database? let anydbm pick the best dbm
149
if not db_type:
150
db = anydbm.open(path, 'c')
151
- self.cache_db_type(path)
+ #self.cache_db_type(path)
152
return db
153
154
# open the database with the correct module
0 commit comments