andrewleech / PyWebDAV3

Port of PyWebDAV to python3, originally from http://code.google.com/p/pywebdav/
72 stars 34 forks source link

Latest release 0.9.9 does not work with Python3 #13

Closed aspotashev closed 5 years ago

aspotashev commented 5 years ago

Latest release 0.9.9 does not work with Python3: the code uses old syntax, e.g. "except DAV_Error, (ec, dd):" in pywebdav/lib/WebDAVServer.py.

This was fixed 3 years ago in commit https://github.com/andrewleech/PyWebDAV3/commit/b4abb327a357d9a3feb373657c406233772b0590 Please make a new release compatible with Python3.

andrewleech commented 5 years ago

You're referring to the original pywebdav project. This is pywebdav3 which I started for python3 compatibility, as such you need to install it as pywebdav3: https://pypi.org/project/PyWebDAV3/

aspotashev commented 5 years ago

Thanks for the clarification!