From 9314ff299fb7e661fba3ff8d6f23fb40a410a9d6 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 22 Feb 2012 23:20:14 -0500 Subject: Add the -v option to sslget to provide more verbose errors I noticed a couple of bad references in ipapython/dogtag.py and fixed those as well. We used to call sslget for all our SSL client needs before python-nss was written. https://fedorahosted.org/freeipa/ticket/2391 --- ipapython/dogtag.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipapython') diff --git a/ipapython/dogtag.py b/ipapython/dogtag.py index 20f2643b..df569c44 100644 --- a/ipapython/dogtag.py +++ b/ipapython/dogtag.py @@ -74,8 +74,8 @@ def https_request(host, port, url, secdir, password, nickname, **kw): host = host.encode('utf-8') uri = 'https://%s%s' % (ipautil.format_netloc(host, port), url) post = urlencode(kw) - root_logger.info('sslget %r', uri) - root_logger.debug('sslget post %r', post) + root_logger.debug('https_request %r', uri) + root_logger.debug('https_request post %r', post) request_headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"} try: -- cgit