Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
neph1 committed Oct 17, 2024
1 parent ec237f4 commit 11ef882
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tale/tio/if_browser_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,6 @@ def __call__(self, environ: Dict[str, Any], start_response: WsgiStartResponseTyp
elif method == "GET":
qs = environ.get("QUERY_STRING", "")
parameters = squash_parameters(parse_qs(qs, encoding="UTF-8"))
print("Request: ", path, parameters)
return self.wsgi_route(environ, path[5:], parameters, start_response)
else:
return self.wsgi_invalid_request(start_response)
Expand Down

0 comments on commit 11ef882

Please sign in to comment.