Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Yuichiro Tachibana (Tsuchiya) <[email protected]>
  • Loading branch information
lukasmasuch and whitphx authored Jan 16, 2024
1 parent 33936c5 commit c1ff261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kernel/py/stlite-server/stlite_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def receive_http(
return
method_name = method.lower()
if method_name not in ("get", "post", "delete"):
on_response(405, {}, b"Now allowed")
on_response(405, {}, b"Not allowed")
return
handler_method = getattr(handler, method_name, None)
if handler_method is None:
Expand Down

0 comments on commit c1ff261

Please sign in to comment.