From 5a301248388f821feae919f99197f4bc31986653 Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Tue, 14 Sep 2021 15:18:57 +0700 Subject: [PATCH] Copyright (C) 2021 By VeezMusicProject --- bot/__main__.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/bot/__main__.py b/bot/__main__.py index afc21ba..37a07b0 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -43,23 +43,23 @@ def load_plugins(plugin_name): async def start(): print('\n') - print('------------------- Initalizing VEEZ ---------------------') + print('------------------ Initalizing VEEZ --------------------') if bot: await bot.start() await app.start() await call_py.start() - print('----------------------- DONE ------------------------') - print('--------------------- Importing ---------------------') + print('------------------------ DONE --------------------------') + print('------------------ Importing Modules -------------------') for name in files: with open(name) as a: path_ = Path(a.name) plugin_name = path_.stem load_plugins(plugin_name.replace(".py", "")) - print('----------------------- INITIATED VEEZ ------------------------') - print(' Logged in as User =>> {}'.format((await app.get_me()).first_name)) + print('------------------- INITIATED VEEZ ---------------------') + print(' Logged in as User =>> {}'.format((await app.get_me()).first_name)) if bot: - print(' and Bot =>> {}'.format((await bot.get_me()).first_name)) - print('-----------------------------------------------------') + print(' Logged in to Bots =>> {}'.format((await bot.get_me()).first_name)) + print('--------------------------------------------------------') await idle() if __name__ == '__main__': is_bot = bool(Veez.BOT_TOKEN)