From f349a4abc6cab12a968f163b695db42143ff2c77 Mon Sep 17 00:00:00 2001 From: Bemhreth Date: Tue, 1 Feb 2022 22:51:23 +0300 Subject: [PATCH] capiitalization fix --- user_data/strategies/notifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_data/strategies/notifier.py b/user_data/strategies/notifier.py index 5474fc71f..4f9afcdd1 100644 --- a/user_data/strategies/notifier.py +++ b/user_data/strategies/notifier.py @@ -3,7 +3,7 @@ from user_data.strategies.config import Config def send_backtest_start_deliminator_message(action, coin, month, year): - print("Notifier: send_backtest_start_deliminator_message: action= " + str(action)) + print("notifier: send_backtest_start_deliminator_message: action= " + str(action)) text = "=========" + str(coin) + " " + str(month) + " " + str(year) + "=========>" result = requests.post('https://api.telegram.org/bot' + Config.NOTIFIER_TELEGRAM_BOT_API_TOKEN_BACKTEST +