From 613276c944504b972a38dec3618137ea81dc0dc9 Mon Sep 17 00:00:00 2001 From: Daniel Badea Date: Mon, 16 Sep 2019 19:51:46 +0000 Subject: [PATCH] python-cephclient: fix python 3 tox Fix python 3 tox error caused urlparse import in commit 9f73cd4f9bf4a8f284642b7940ac41d22b637d3e "python-cephclient: use configured restful api plugin" Closes-bug: 1828470 Signed-off-by: Daniel Badea Change-Id: I58c338cec72132aade7a4b4c1e2abeb887b27c86 --- ceph/python-cephclient/python-cephclient/cephclient/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph/python-cephclient/python-cephclient/cephclient/client.py b/ceph/python-cephclient/python-cephclient/cephclient/client.py index 966f5fef..f27b1b36 100644 --- a/ceph/python-cephclient/python-cephclient/cephclient/client.py +++ b/ceph/python-cephclient/python-cephclient/cephclient/client.py @@ -9,7 +9,7 @@ import ipaddress import json import logging import os -import urlparse +from six.moves.urllib.parse import urlparse import re import requests import six