This commit is contained in:
liris 2015-06-24 11:49:18 +09:00
parent 759d0e5749
commit dcf4eb6ef3
4 changed files with 10 additions and 3 deletions

@ -1,6 +1,10 @@
ChangeLog
============
- 0.33.0
- fixed timeout+ssl error handling bug on python 2.7.10 (#190)
- 0.32.0
- fix http proxy bug (#189)

@ -1,7 +1,7 @@
from setuptools import setup
import sys
VERSION = "0.32.0"
VERSION = "0.33.0"
NAME="websocket_client"
install_requires = ["six"]

@ -22,4 +22,4 @@ Copyright (C) 2010 Hiroki Ohtani(liris)
from ._core import *
from ._app import WebSocketApp
__version__ = "0.32.0"
__version__ = "0.33.0"

@ -85,4 +85,7 @@ def validate_utf8(utfbytes):
def extract_err_message(exception):
return getattr(exception, 'strerror', str(exception))
if exception.args:
return exception.args[0]
else:
return None