From c76caf36e8068cc9a1bcf0cd2c0eb0429bd782ae Mon Sep 17 00:00:00 2001 From: ohemorange Date: Wed, 27 Mar 2019 00:34:18 +0100 Subject: [PATCH] Update certbot-ci/certbot_integration_tests/utils/misc.py Co-Authored-By: adferrand --- certbot-ci/certbot_integration_tests/utils/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-ci/certbot_integration_tests/utils/misc.py b/certbot-ci/certbot_integration_tests/utils/misc.py index cdc051877..dc0227d7f 100644 --- a/certbot-ci/certbot_integration_tests/utils/misc.py +++ b/certbot-ci/certbot_integration_tests/utils/misc.py @@ -82,7 +82,7 @@ def read_certificate(cert_path): return crypto.dump_certificate(crypto.FILETYPE_TEXT, cert).decode('utf-8') -class GraceFullTCPServer(socketserver.TCPServer): +class GracefulTCPServer(socketserver.TCPServer): allow_reuse_address = True