From 5283482150634d04baa0409cba6a520a6e261456 Mon Sep 17 00:00:00 2001 From: Panoramic Date: Mon, 10 Jun 2024 22:11:09 +0300 Subject: [PATCH] Update references after rename --- vetting-bot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vetting-bot b/vetting-bot index 4b9c8ef..c8d93f4 100755 --- a/vetting-bot +++ b/vetting-bot @@ -2,9 +2,9 @@ import asyncio try: - from my_project_name import main + from vetting_bot import main # Run the main function of the bot asyncio.get_event_loop().run_until_complete(main.main()) except ImportError as e: - print("Unable to import my_project_name.main:", e) + print("Unable to import vetting_bot.main:", e)