From 8abc27bc3a07c21953a0eab2cc6ad7a14a04c75e Mon Sep 17 00:00:00 2001 From: Uwe Pfeifer Date: Sun, 1 Jan 2023 14:14:23 +0100 Subject: [PATCH] switched description --- pybot-f.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pybot-f.py b/pybot-f.py index 3d7a1b3..a2255f7 100644 --- a/pybot-f.py +++ b/pybot-f.py @@ -9,8 +9,8 @@ from discord.ext import commands import logging # Logging -handler = logging.FileHandler(filename='bot.log', encoding='utf-8', mode='w') -discord.utils.setup_logging(handler=handler) +loghandler = logging.FileHandler(filename='bot.log', encoding='utf-8', mode='w') +discord.utils.setup_logging(handler=loghandler) # logger = logging.getLogger('discord') # logger.setLevel(logging.INFO) @@ -19,7 +19,7 @@ discord.utils.setup_logging(handler=handler) # logger.addHandler(handler) # The bots' description -description = '''Testing this bot stuff :)''' +description = '''Where does this appear?''' # Intents intents = discord.Intents.default()