From 550d3491282c7a3ac74f5863046f59adc5e1db56 Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Sun, 8 Aug 2021 00:11:21 +0300 Subject: ok it was a bug in gpio-relayd --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 06b43d0..60df15d 100644 --- a/main.py +++ b/main.py @@ -108,7 +108,7 @@ def msg_status(update: Update, context: CallbackContext) -> None: response = relay.status() status = 'Включен' if response == 'on' else 'Выключен' - reply(update, status + ' ' + response) + reply(update, status) except Exception as e: handle_exc(update, e) -- cgit v1.2.3