We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
unquote_plus
1 parent 9e76fb3 commit b4bd746Copy full SHA for b4bd746
trino/client.py
@@ -224,7 +224,7 @@ def get_header_values(headers, header):
224
def get_session_property_values(headers, header):
225
kvs = get_header_values(headers, header)
226
return [
227
- (k.strip(), urllib.parse.unquote(v.strip()))
+ (k.strip(), urllib.parse.unquote_plus(v.strip()))
228
for k, v in (kv.split("=", 1) for kv in kvs)
229
]
230
0 commit comments