diff --git a/README.rst b/README.rst index ac5258bee..7c9eca207 100644 --- a/README.rst +++ b/README.rst @@ -77,13 +77,13 @@ Quick Start # withdraw 100 ETH # check docs for assumptions around withdrawals - from binance.exceptions import BinanceApiException, BinanceWithdrawException + from binance.exceptions import BinanceAPIException, BinanceWithdrawException try: result = client.withdraw( asset='ETH', address='', amount=100) - except BinanceApiException as e: + except BinanceAPIException as e: print(e) except BinanceWithdrawException as e: print(e)