diff --git a/roundup/backends/sessions_dbm.py b/roundup/backends/sessions_dbm.py index f52a937e..02828ed2 100644 --- a/roundup/backends/sessions_dbm.py +++ b/roundup/backends/sessions_dbm.py @@ -46,7 +46,7 @@ def clear(self): os.remove(path+".dir") os.remove(path+".dat") - self._db_type = None + #self._db_type = None def cache_db_type(self, path): ''' determine which DB wrote the class file, and cache it as an @@ -148,7 +148,7 @@ def opendb(self, mode): # new database? let anydbm pick the best dbm if not db_type: db = anydbm.open(path, 'c') - self.cache_db_type(path) + #self.cache_db_type(path) return db # open the database with the correct module