Skip to content

Commit

Permalink
Merge branch 'fix_content_type_for_404' of https://github.com/bosskey…
Browse files Browse the repository at this point in the history
  • Loading branch information
dn0 committed Sep 2, 2016
2 parents d8b2ee7 + c8e3162 commit f4d2c44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions socketio/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def handle_bad_request(self):
self.start_response("400 Bad Request", [
('Content-Type', 'text/plain'),
('Connection', 'close'),
('Content-Length', 0)
('Content-Length', '0')
])


Expand All @@ -223,5 +223,5 @@ def handle_disconnect_request(self):
self.start_response("200 OK", [
('Content-Type', 'text/plain'),
('Connection', 'close'),
('Content-Length', 0)
('Content-Length', '0')
])

0 comments on commit f4d2c44

Please sign in to comment.