From d5bc11e0ec503b448cd88a40b140c02c4c03014f Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Thu, 4 Apr 2024 13:31:22 +0200 Subject: [PATCH] fix typo --- modules/remotebackend/regression-tests/http-backend.py | 2 +- modules/remotebackend/unittest_http.py | 2 +- modules/remotebackend/unittest_json.py | 2 +- modules/remotebackend/unittest_post.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/remotebackend/regression-tests/http-backend.py b/modules/remotebackend/regression-tests/http-backend.py index 1fc8e5faf1..64cfbdca16 100755 --- a/modules/remotebackend/regression-tests/http-backend.py +++ b/modules/remotebackend/regression-tests/http-backend.py @@ -12,7 +12,7 @@ class DNSBackendServer(http.server.HTTPServer): super().__init__(*args, **kwargs) def finish_request(self, request, client_address): - """Finish one request b instantiating RequestHandlerClass.""" + """Finish one request by instantiating RequestHandlerClass.""" h = self.RequestHandlerClass(request, client_address, self, handler=self.handler) def main(): diff --git a/modules/remotebackend/unittest_http.py b/modules/remotebackend/unittest_http.py index 561340fc2d..c9ede2e2dd 100755 --- a/modules/remotebackend/unittest_http.py +++ b/modules/remotebackend/unittest_http.py @@ -13,7 +13,7 @@ class DNSBackendServer(http.server.HTTPServer): super().__init__(*args, **kwargs) def finish_request(self, request, client_address): - """Finish one request b instantiating RequestHandlerClass.""" + """Finish one request by instantiating RequestHandlerClass.""" h = self.RequestHandlerClass(request, client_address, self, handler=self.handler) diff --git a/modules/remotebackend/unittest_json.py b/modules/remotebackend/unittest_json.py index 7c08dbd094..e3468e094c 100755 --- a/modules/remotebackend/unittest_json.py +++ b/modules/remotebackend/unittest_json.py @@ -11,7 +11,7 @@ class DNSBackendServer(http.server.HTTPServer): super().__init__(*args, **kwargs) def finish_request(self, request, client_address): - """Finish one request b instantiating RequestHandlerClass.""" + """Finish one request by instantiating RequestHandlerClass.""" h = self.RequestHandlerClass(request, client_address, self, handler=self.handler) diff --git a/modules/remotebackend/unittest_post.py b/modules/remotebackend/unittest_post.py index 3109d25ff6..6cb34def71 100755 --- a/modules/remotebackend/unittest_post.py +++ b/modules/remotebackend/unittest_post.py @@ -12,7 +12,7 @@ class DNSBackendServer(http.server.HTTPServer): super().__init__(*args, **kwargs) def finish_request(self, request, client_address): - """Finish one request b instantiating RequestHandlerClass.""" + """Finish one request by instantiating RequestHandlerClass.""" h = self.RequestHandlerClass(request, client_address, self, handler=self.handler) -- 2.47.2