- fixed #190
This commit is contained in:
@@ -1,6 +1,10 @@
|
|||||||
ChangeLog
|
ChangeLog
|
||||||
============
|
============
|
||||||
|
|
||||||
|
- 0.33.0
|
||||||
|
|
||||||
|
- fixed timeout+ssl error handling bug on python 2.7.10 (#190)
|
||||||
|
|
||||||
- 0.32.0
|
- 0.32.0
|
||||||
|
|
||||||
- fix http proxy bug (#189)
|
- fix http proxy bug (#189)
|
||||||
|
2
setup.py
2
setup.py
@@ -1,7 +1,7 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = "0.32.0"
|
VERSION = "0.33.0"
|
||||||
NAME="websocket_client"
|
NAME="websocket_client"
|
||||||
|
|
||||||
install_requires = ["six"]
|
install_requires = ["six"]
|
||||||
|
@@ -22,4 +22,4 @@ Copyright (C) 2010 Hiroki Ohtani(liris)
|
|||||||
from ._core import *
|
from ._core import *
|
||||||
from ._app import WebSocketApp
|
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):
|
def extract_err_message(exception):
|
||||||
return getattr(exception, 'strerror', str(exception))
|
if exception.args:
|
||||||
|
return exception.args[0]
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
Reference in New Issue
Block a user