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

Commit

Permalink
Fix concat
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani committed Nov 12, 2023
1 parent cf240db commit f915449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def play():
data = f""
request_lines = body.decode('utf-8').strip().splitlines(True)
for line in request_lines:
data += line.strip()
data += " " + line.strip()
body = data.encode('utf-8')
query = query + " ".encode('utf-8') + body

Expand Down

0 comments on commit f915449

Please sign in to comment.