Did some digging through the code and I may have found the problem in the 
following:

def closeConnections(self):
    """Cleanup as the app is exiting."""
    for conn in self.dbConnections:
      try:
        conn.close()
      except:
        pass

self.dbConnections is a dict and the conn in the for loop
is actually the key not the connection. Doing conn.close()
yields a 'string does not have close() method error'. When 
I did something along line of self.dbConnections[conn].close()
then I got a clean exit. I don't know if this helps or not.

--
Adrian Klaver
[EMAIL PROTECTED]


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]

Reply via email to