coinbase / coinbase-python

DEPRECATED — Coinbase Python API
Apache License 2.0
524 stars 218 forks source link

Fix AttributeError message #51

Closed joshblum closed 6 years ago

joshblum commented 6 years ago

Previously errors would be reported as AttributeError: 'KeyError' object has no attribute 'message'. BaseException.message was deprecated in python 2.6 and was removed in python 2.7 and 3.0 https://www.python.org/dev/peps/pep-0352/

(Had to make some fixes to the travis build to get tests to pass, depends on #53 )

sds commented 6 years ago

Thanks for this, @joshblum!