From 55d0d27756fef23ea40bc04a165698b05a44c59b Mon Sep 17 00:00:00 2001 From: Jean-Baptiste LE STANG Date: Tue, 2 Jan 2018 14:55:31 +0100 Subject: [PATCH] message too long, removing URL for now --- freqtrade/rpc/telegram.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/rpc/telegram.py b/freqtrade/rpc/telegram.py index ef54bf8b5..3b885c25c 100644 --- a/freqtrade/rpc/telegram.py +++ b/freqtrade/rpc/telegram.py @@ -476,10 +476,10 @@ def _performance(bot: Bot, update: Update) -> None: .order_by(text('profit_sum DESC')) \ .all() - stats = '\n'.join('{index}.\t[{pair}]({url})\t{profit:.2f}% ({count})'.format( + stats = '\n'.join('{index}.\t{pair}\t{profit:.2f}% ({count})'.format( index=i + 1, pair=pair, - url=exchange.get_pair_detail_url(pair), + #url=exchange.get_pair_detail_url(pair), profit=round(rate * 100, 2), count=count ) for i, (pair, rate, count) in enumerate(pair_rates))