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 :)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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 :)