Commit bdcb653a authored by Arnaud Fontaine's avatar Arnaud Fontaine

ZMySQLDA: `db` may be None if MariaDB connection could not be established.

parent ebb897ec
......@@ -291,7 +291,8 @@ class DB(TM):
_p_oid=_p_changed=_registered=None
def __del__(self):
self.db.close()
if self.db is not None:
self.db.close()
def _forceReconnection(self):
db = self.db
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment