Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lalinsky committed Dec 12, 2024
1 parent f4c2bef commit bd473e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion legacy-proxy/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async def handle_request(self, request):
raise ProtocolError("invalid command")

if request[0] == "echo":
return " ".join(request[1:]
return " ".join(request[1:])

if request[0] == "search":
query = parse_hashes(request[1])
Expand Down

0 comments on commit bd473e0

Please sign in to comment.