Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / websocket / handshake-fail-by-more-protocol-header_wsh.py
index 88a5635..6f8938e 100644 (file)
@@ -11,7 +11,8 @@ def web_socket_do_extra_handshake(request):
     msg += 'Sec-WebSocket-Protocol: MismatchProtocol\r\n'
     msg += '\r\n'
     request.connection.write(msg)
-    raise handshake.AbortedByUserException('Abort the connection') # Prevents pywebsocket from sending its own handshake message.
+    # Prevents pywebsocket from sending its own handshake message.
+    raise handshake.AbortedByUserException('Abort the connection')
 
 
 def web_socket_transfer_data(request):