From 2ff47187c61cf1a44662d2df0969fb3379f58185 Mon Sep 17 00:00:00 2001 From: James Graham Date: Wed, 28 Jan 2015 13:23:09 +0000 Subject: [PATCH] Fix signature of NoSSLEnvironment. Previously this would throw because it was being passed an unexpected logger. --- tools/sslutils/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sslutils/base.py b/tools/sslutils/base.py index b9a9ede5bca870..d9d6544e9e9dad 100644 --- a/tools/sslutils/base.py +++ b/tools/sslutils/base.py @@ -7,7 +7,7 @@ def get_logger(name="ssl"): class NoSSLEnvironment(object): ssl_enabled = False - def __init__(self): + def __init__(self, *args, **kwargs): pass def __enter__(self):