Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jstasiak committed Nov 2, 2014
1 parent 6f749af commit dfa9bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eventlet/websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def _handle_legacy_request(self, environ):
b"Upgrade: WebSocket\r\n"
b"Connection: Upgrade\r\n"
b"WebSocket-Origin: " + environ.get('HTTP_ORIGIN') + b"\r\n"
b"WebSocket-Location: " + six.b(location) + b"\r\n\r\n",
b"WebSocket-Location: " + six.b(location) + b"\r\n\r\n"
)
elif self.protocol_version == 76:
handshake_reply = (
Expand Down

0 comments on commit dfa9bed

Please sign in to comment.