summaryrefslogtreecommitdiffstats
path: root/ipapython/dogtag.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython/dogtag.py')
-rw-r--r--ipapython/dogtag.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipapython/dogtag.py b/ipapython/dogtag.py
index 693c0da8d..c6b3a5dc4 100644
--- a/ipapython/dogtag.py
+++ b/ipapython/dogtag.py
@@ -66,6 +66,8 @@ def https_request(host, port, url, secdir, password, nickname, **kw):
Perform a client authenticated HTTPS request
"""
+ if isinstance(host, unicode):
+ host = host.encode('utf-8')
uri = 'https://%s:%d%s' % (host, port, url)
post = urlencode(kw)
logging.info('sslget %r', uri)
@@ -101,6 +103,8 @@ def http_request(host, port, url, **kw):
Perform an HTTP request.
"""
+ if isinstance(host, unicode):
+ host = host.encode('utf-8')
uri = 'http://%s:%s%s' % (host, port, url)
post = urlencode(kw)
logging.info('request %r', uri)