Commit 6cc217e6 authored by iv's avatar iv

HTTP "Not implemented error" has code 501.

parent 94dd59da
...@@ -194,7 +194,7 @@ class WebDAV(MethodView): ...@@ -194,7 +194,7 @@ class WebDAV(MethodView):
response = g.response response = g.response
# currently unsupported # currently unsupported
response.status = '423' response.status = '501'
return response return response
def proppatch(self, pathname): def proppatch(self, pathname):
...@@ -202,7 +202,7 @@ class WebDAV(MethodView): ...@@ -202,7 +202,7 @@ class WebDAV(MethodView):
response = g.response response = g.response
# currently unsupported # currently unsupported
response.status = '423' response.status = '501'
return response return response
def mkcol(self, pathname): def mkcol(self, pathname):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment