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)