From 1d0d83b1df750b5033b580023fca58dbce15e346 Mon Sep 17 00:00:00 2001 From: thezero Date: Wed, 25 Nov 2020 22:46:56 +0100 Subject: [PATCH] don't print token, thanks --- src/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.py b/src/main.py index 6e74cba..e67cb8f 100644 --- a/src/main.py +++ b/src/main.py @@ -50,7 +50,6 @@ if os.environ.get('CONF_FOLDER') is None: TOKEN = None with open(os.path.join(os.environ['CONF_FOLDER'], 'bot.token')) as f: TOKEN = f.read().strip() -logger.error(TOKEN) updater = Updater(token=TOKEN) updater.dispatcher.add_handler(MessageHandler(Filters.text, get_format))