Skip to content

Commit d896177

Browse files
author
designerror
committed
Fixed #8
1 parent c97d267 commit d896177

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from setuptools.command.test import test as TestCommand
88
from setuptools.command.install import install as InstallCommand
99

10-
version = "1.0.5"
10+
version = "1.0.6"
1111
requirements = "libxml2-dev libxslt-dev python-dev libcurl4-openssl-dev python-pycurl"
1212

1313
class Install(InstallCommand):

webdav/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
except ImportError:
1717
from urllib import unquote
1818

19-
__version__ = "1.0.5"
19+
__version__ = "1.0.6"
2020

2121

2222
def listdir(directory):
@@ -288,8 +288,8 @@ def parse(response, path):
288288
return False
289289

290290
except etree.XMLSyntaxError:
291-
raise MethodNotSupported(name="check", server=self.webdav.hostname)
292-
291+
return False
292+
293293
try:
294294
urn = Urn(remote_path)
295295
parent_urn = Urn(urn.parent())

0 commit comments

Comments
 (0)