- fixed #190
This commit is contained in:
parent
759d0e5749
commit
dcf4eb6ef3
@ -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)
|
||||
|
2
setup.py
2
setup.py
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user