summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@umlautQ.umlaeute.mur.at>2016-02-23 14:49:32 +0100
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>2019-09-18 13:30:59 +0200
commit6d2d8f786f14598acde105128142a1c1a28f54d4 (patch)
treebcf9bcb639664a46643a4afe9915c13f1cb10288
parentd759825643dae46e0074054f8356980458cfd672 (diff)
Provide fallback for "basestring" under python3archive/debian/1.2.0-6
Patch-Name: python3.patch Gbp-Pq: Name python3.patch
-rw-r--r--easywebdav/client.py1
1 files changed, 1 insertions, 0 deletions
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