From d00722b88892cb6daa7fa4094ab91b2da784ccbe Mon Sep 17 00:00:00 2001 From: Shane Fontaine Date: Fri, 28 Dec 2018 22:20:33 -0800 Subject: [PATCH] Fix URL issue --- ethfinex/public_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethfinex/public_client.py b/ethfinex/public_client.py index 4a93c70..0fc1b8c 100644 --- a/ethfinex/public_client.py +++ b/ethfinex/public_client.py @@ -213,7 +213,7 @@ def get_candles(self, symbol, time_frame, section, if sort: params['sort'] = sort - url = 'candles/trade:' + url = '/candles/trade:' return self._send_message(f'{url}{time_frame}:{symbol}/{section}', params=params)