From 73e29587c895fb4d5a3939dffcd6937f8f611f12 Mon Sep 17 00:00:00 2001 From: era Date: Sat, 2 Oct 2021 19:18:56 +0100 Subject: [PATCH] fix error with urllib and python3 - https://github.com/druid-io/pydruid/issues/252 --- pydruid/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydruid/client.py b/pydruid/client.py index ae51eab7..dab1376b 100755 --- a/pydruid/client.py +++ b/pydruid/client.py @@ -15,7 +15,7 @@ # import json import re -import urllib +import urllib.request from base64 import b64encode from pydruid.query import QueryBuilder