From e3d5c9cb10f8ba6f7eef554c7d13e6e0af895161 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 30 May 2021 16:39:33 +0100 Subject: [PATCH] Fix typo in exception message --- freqtrade/plot/plotting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/plot/plotting.py b/freqtrade/plot/plotting.py index 194c20714..b62ae6015 100644 --- a/freqtrade/plot/plotting.py +++ b/freqtrade/plot/plotting.py @@ -118,7 +118,7 @@ def add_indicators(fig, row, indicators: Dict[str, Dict], data: pd.DataFrame) -> kwargs.update({'line': {'color': color}}) kwargs['mode'] = 'lines' if plot_type != 'scatter': - logger.warning(f'Indicator {indicator} has hnknown plot trace kind {plot_type}' + logger.warning(f'Indicator {indicator} has unknown plot trace kind {plot_type}' f', assuming "scatter".') kwargs.update(conf.get('plotly', {}))