diff --git a/ipapython/dogtag.py b/ipapython/dogtag.py index dd3f3aef8..dc40e80d8 100644 --- a/ipapython/dogtag.py +++ b/ipapython/dogtag.py @@ -227,7 +227,7 @@ def _httplib_request( try: conn = connection_factory(host, port, **connection_options) - conn.request(method, uri, body=request_body, headers=headers) + conn.request(method, path, body=request_body, headers=headers) res = conn.getresponse() http_status = res.status