Skip to content

Commit

Permalink
Merge pull request #20 from SnoozeTime/develop
Browse files Browse the repository at this point in the history
Fix get_order_detail bug by removing slash
  • Loading branch information
sammchardy committed Feb 10, 2018
2 parents edf10c8 + 3d9c3bb commit 6156db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kucoin/client.py
Expand Up @@ -1541,7 +1541,7 @@ def get_order_details(self, symbol, order_type, limit=None, page=None, order_id=
if order_id:
data['orderOid'] = order_id

return self._get('/order/detail', True, data=data)
return self._get('order/detail', True, data=data)

# Market Endpoints

Expand Down

0 comments on commit 6156db1

Please sign in to comment.