From 261b2ce49b1dfe7a284570a54e6a1401f30ae4e6 Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Thu, 4 Oct 2018 13:26:11 +0530 Subject: [PATCH] Fix typo. --- lock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lock.py b/lock.py index f055dd1..e00e161 100644 --- a/lock.py +++ b/lock.py @@ -23,7 +23,7 @@ if arg == "lock": bot.send_message(chat_id=config.master_id, text=text) elif arg == "unlock": today = datetime.datetime.today() - text = today.strftime(config.lock_message) + text = today.strftime(config.unlock_message) bot.send_message(chat_id=config.master_id, text=text) else: print("Wrong parameter. Exiting.")