From a2b83bd771492a4e8add4570850badc746028032 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 21 Aug 2018 16:49:41 -0700 Subject: [PATCH] Use urllib.parse instead of urlparse python3 moved this to a new module. (cherry picked from commit 86d556e87c7a8a216a6ff9f74d39a13826aad1f3) --- src/composer/http_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/composer/http_client.py b/src/composer/http_client.py index ff356bbf..b9544519 100644 --- a/src/composer/http_client.py +++ b/src/composer/http_client.py @@ -20,7 +20,7 @@ log = logging.getLogger("composer-cli") import os import sys import json -from urlparse import urlparse, urlunparse +from urllib.parse import urlparse, urlunparse from composer.unix_socket import UnixHTTPConnectionPool