From a2e79e1c5aec5d7e6af9eeffa8a0db7b43958b29 Mon Sep 17 00:00:00 2001 From: Twentysix Date: Sat, 4 Jun 2016 03:01:05 +0200 Subject: [PATCH] Took out prefix example Apparently reading is hard --- red.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/red.py b/red.py index c7e7bcd6a..3f4c0573f 100644 --- a/red.py +++ b/red.py @@ -43,14 +43,14 @@ async def on_ready(): if not "uptime" in dir(bot): #prevents reset in case of reconnection bot.uptime = int(time.perf_counter()) print('------') - print(bot.user.name + " is now online.") + print("{} is now online.".format(bot.user.name)) print('------') print("Connected to:") - print(servers + " servers") - print(channels + " channels") - print(users + " users") + print("{} servers".format(servers)) + print("{} channels".format(channels)) + print("{} users".format(users)) print("\n{0} active cogs with {1} commands\n".format( - str(len(bot.cogs)), str(len(bot.commands)))) + len(bot.cogs), len(bot.commands))) if settings.login_type == "token": print("------") print("Use this url to bring your bot to a server:") @@ -173,7 +173,7 @@ def check_configs(): exit(1) print("\nChoose a prefix. A prefix is what you type before a command.\n" - "A typical prefix would be the exclamation mark. Example: !help\n" + "A typical prefix would be the exclamation mark.\n" "Can be multiple characters. You will be able to change it " "later and add more of them.\nChoose your prefix:") confirmation = False