ezhov-evgeny / webdav-client-python-3

Easy to use WebDAV Client for Python 3.x
Other
206 stars 87 forks source link

ValueError: <class 'webdav3.exceptions.RemoteResourceNotFound'>: #92

Open FranRM opened 3 years ago

FranRM commented 3 years ago

Few weeks ago I developed an app using the module and worked flawless, but from a few days ago, any time I try to download any .vcf file from contacts, it shows that error. The weird thing is that I can list the files perfectly. This is the client initialization method: ` def get_client(self):

    options = {
        'webdav_hostname': self.env.user.company_id.nc_url,
        'webdav_login': self.env.user.company_id.nc_user,
        'webdav_password': self.env.user.company_id.nc_passwd
    }
    client = Client(options)
    client.verify = False
    return client`
FranRM commented 3 years ago

Also, i was trying to test if the publish method could fix the problem, and it locks that doesn't work (the own method). "*** AttributeError: 'Client' object has no attribute 'publish'"