From 6d2d8f786f14598acde105128142a1c1a28f54d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 23 Feb 2016 14:49:32 +0100 Subject: Provide fallback for "basestring" under python3 Patch-Name: python3.patch Gbp-Pq: Name python3.patch --- easywebdav/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/easywebdav/client.py b/easywebdav/client.py index 4003198..a8fb219 100644 --- a/easywebdav/client.py +++ b/easywebdav/client.py @@ -12,6 +12,7 @@ if py_majversion == '2': else: from http.client import responses as HTTP_CODES from urllib.parse import urlparse + basestring = str DOWNLOAD_CHUNK_SIZE_BYTES = 1 * 1024 * 1024 -- cgit v1.2.3