From d76a871bb8d04df52e5b4f244940a95724056764 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Sat, 5 Dec 2015 10:35:39 +0300 Subject: [PATCH] Py3 compatibility fix: aliasing basestring to str --- easywebdav/client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/easywebdav/client.py b/easywebdav/client.py index 4003198..dd02cc9 100644 --- a/easywebdav/client.py +++ b/easywebdav/client.py @@ -13,6 +13,8 @@ from http.client import responses as HTTP_CODES from urllib.parse import urlparse + basestring = str + DOWNLOAD_CHUNK_SIZE_BYTES = 1 * 1024 * 1024 class WebdavException(Exception):