diff --git a/main.py b/main.py index a7e9fe9..9868d78 100644 --- a/main.py +++ b/main.py @@ -132,4 +132,4 @@ async def app_command_error(interaction: discord.Interaction, error): if __name__ == "__main__": update.checkVersion(withMsg=True) - bot.run(os.getenv("TOKEN")) \ No newline at end of file + bot.run(os.getenv("TOKEN"), log_handler=None) \ No newline at end of file diff --git a/update.py b/update.py index 0531e33..997aad2 100644 --- a/update.py +++ b/update.py @@ -3,7 +3,7 @@ from io import BytesIO root_dir = os.path.dirname(os.path.abspath(__file__)) install_pack_dir = os.path.join(root_dir, "Vocard.zip") -__version__ = "v2.5.6" +__version__ = "v2.5.7" def checkVersion(withMsg = False): resp = requests.get("https://api.github.com/repos/ChocoMeow/Vocard/releases/latest")