Commit d56f48b0 authored by Arnaud Fontaine's avatar Arnaud Fontaine

ZMySQLDA: Do not try to close the connection if it has not been already opened.

parent 91ad7df3
......@@ -286,7 +286,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