Skip to content
This repository was archived by the owner on Dec 29, 2023. It is now read-only.

Commit f915449

Browse files
authored
Fix concat
1 parent cf240db commit f915449

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def play():
8282
data = f""
8383
request_lines = body.decode('utf-8').strip().splitlines(True)
8484
for line in request_lines:
85-
data += line.strip()
85+
data += " " + line.strip()
8686
body = data.encode('utf-8')
8787
query = query + " ".encode('utf-8') + body
8888

0 commit comments

Comments
 (0)