Update _core.py

re-fixed issue #49
This commit is contained in:
pedrudehuere
2014-06-05 12:29:15 +02:00
parent 22f92961d4
commit bf5edde475

View File

@@ -723,13 +723,13 @@ class WebSocket(object):
return ABNF(fin, rsv1, rsv2, rsv3, opcode, has_mask, payload) return ABNF(fin, rsv1, rsv2, rsv3, opcode, has_mask, payload)
def send_close(self, status=STATUS_NORMAL, reason=""): def send_close(self, status=STATUS_NORMAL, reason=b""):
""" """
send close data to the server. send close data to the server.
status: status code to send. see STATUS_XXX. status: status code to send. see STATUS_XXX.
reason: the reason to close. This must be string. reason: the reason to close. This must be string or bytes.
""" """
if status < 0 or status >= ABNF.LENGTH_16: if status < 0 or status >= ABNF.LENGTH_16:
raise ValueError("code is invalid range") raise ValueError("code is invalid range")