From 002fe6a338e61c11ffc685c65421a8193e4e06ef Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Mon, 30 Mar 2015 15:47:53 -0700 Subject: [PATCH] certauth: change 'get_cert_for_host' -> 'cert_for_host' --- pywb/framework/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywb/framework/proxy.py b/pywb/framework/proxy.py index 01d185eb..bbd27e1b 100644 --- a/pywb/framework/proxy.py +++ b/pywb/framework/proxy.py @@ -252,7 +252,7 @@ class ProxyRouter(object): hostname, port = env['REL_REQUEST_URI'].split(':') if not self.use_wildcard: - certfile = self.ca.get_cert_for_host(hostname) + certfile = self.ca.cert_for_host(hostname) else: certfile = self.ca.get_wildcard_cert(hostname)