Remove currency from daily table

This commit is contained in:
Matthias 2018-07-24 09:35:05 +01:00
parent 30b72ad98a
commit 4928686af9
2 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ class RPC(object):
stake_currency, stake_currency,
fiat_display_currency fiat_display_currency
) if self._fiat_converter else 0, ) if self._fiat_converter else 0,
symbol=fiat_display_currency symbol=fiat_display_currency if fiat_display_currency else ''
), ),
'{value} trade{s}'.format( '{value} trade{s}'.format(
value=value['trades'], value=value['trades'],

View File

@ -241,7 +241,7 @@ class Telegram(RPC):
headers=[ headers=[
'Day', 'Day',
f'Profit {stake_cur}', f'Profit {stake_cur}',
f'Profit {fiat_disp_cur}' f'Profit {fiat_disp_cur if fiat_disp_cur else ""}'
], ],
tablefmt='simple') tablefmt='simple')
message = f'<b>Daily Profit over the last {timescale} days</b>:\n<pre>{stats}</pre>' message = f'<b>Daily Profit over the last {timescale} days</b>:\n<pre>{stats}</pre>'