summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpedrudehuere <pedrudehuere@users.noreply.github.com>2014-06-05 12:29:15 +0200
committerpedrudehuere <pedrudehuere@users.noreply.github.com>2014-06-05 12:29:15 +0200
commitbf5edde47518c30156c9f46d82a2effde25cedb2 (patch)
tree6c58f5caf803bcb521cd3dda28711aa5436c129a
parent22f92961d45862bbb279ba792e62b1b63c3f0ccc (diff)
downloadwebsocket-client-bf5edde47518c30156c9f46d82a2effde25cedb2.tar.gz
Update _core.py
re-fixed issue #49
-rw-r--r--websocket/_core.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/websocket/_core.py b/websocket/_core.py
index 87bca4b..189e052 100644
--- a/websocket/_core.py
+++ b/websocket/_core.py
@@ -723,13 +723,13 @@ class WebSocket(object):
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.
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:
raise ValueError("code is invalid range")