From be6c9999ada850d8b9176f898a082b1c93e77833 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Mon, 8 Dec 2025 15:48:58 +0100 Subject: [PATCH] Fix typo in the python v4.3.1 headers change --- templates/python/v4.3.1/rest.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/python/v4.3.1/rest.mustache b/templates/python/v4.3.1/rest.mustache index 880920e..fb39a50 100644 --- a/templates/python/v4.3.1/rest.mustache +++ b/templates/python/v4.3.1/rest.mustache @@ -36,7 +36,7 @@ class RESTResponse(io.IOBase): def getheader(self, name, default=None): """Returns a given response header.""" - return self.urllib3_response.header.get(name, default) + return self.urllib3_response.headers.get(name, default) class RESTClientObject(object):