Fix dbcursor issue

This commit is contained in:
2010-05-14 14:30:04 +01:00
parent 7376f1e1b8
commit 60b705ac03

View File

@@ -80,7 +80,7 @@ class BaseDBService(BaseService):
@property
def _dbcursor(self):
return self._db.dbcursor()
return self._db.cursor()
def __del__(self):
if hasattr(self, '_db'):