We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e5f50 commit d724121Copy full SHA for d724121
tls_client/__version__.py
@@ -6,6 +6,6 @@
6
7
__title__ = "tls_client"
8
__description__ = "Advanced Python HTTP Client."
9
-__version__ = "0.1.7"
+__version__ = "0.1.8"
10
__author__ = "Florian Zager"
11
__license__ = "MIT"
tls_client/sessions.py
@@ -269,6 +269,7 @@ def execute_request(
269
# check if all header keys and values are strings
270
if type(header_key) is str and type(header_value) is str:
271
self.headers[header_key] = header_value
272
+ headers = self.headers
273
else:
274
headers = self.headers
275
0 commit comments