From bfc0ec091a482b26ebf59dab2994c1b31b285c43 Mon Sep 17 00:00:00 2001 From: Jonathan Raviotta Date: Fri, 6 Sep 2019 22:02:43 -0400 Subject: [PATCH] fixed invalid concatantation --- 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 1627959f9..3abad2b35 100644 --- a/freqtrade/plot/plotting.py +++ b/freqtrade/plot/plotting.py @@ -358,7 +358,7 @@ def load_and_plot_trades(config: Dict[str, Any]): ) store_plot_file(fig, filename=generate_plot_filename(pair, config['ticker_interval']), - directory=config['user_data_dir'] / "plot") + directory=Path(config['user_data_dir'], "plot")) logger.info('End of plotting process. %s plots generated', pair_counter)