Zander - 2012-10-30

Very minor, but when I try to connect to my webDav server, it fails due to a certificate error:

httplib2.SSLHandshakeError:  _ssl.c:503: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

To get around this, modify connection.py to this:
# Make an http object for this connection
self.httpcon = httplib2.Http(disable_ssl_certificate_validation=True)

This is because my webDav server uses https (SSL) to connect.

Just wanted to let you know :)