Took out prefix example

Apparently reading is hard
This commit is contained in:
Twentysix 2016-06-04 03:01:05 +02:00
parent b0a017c34e
commit a2e79e1c5a

12
red.py
View File

@ -43,14 +43,14 @@ async def on_ready():
if not "uptime" in dir(bot): #prevents reset in case of reconnection if not "uptime" in dir(bot): #prevents reset in case of reconnection
bot.uptime = int(time.perf_counter()) bot.uptime = int(time.perf_counter())
print('------') print('------')
print(bot.user.name + " is now online.") print("{} is now online.".format(bot.user.name))
print('------') print('------')
print("Connected to:") print("Connected to:")
print(servers + " servers") print("{} servers".format(servers))
print(channels + " channels") print("{} channels".format(channels))
print(users + " users") print("{} users".format(users))
print("\n{0} active cogs with {1} commands\n".format( 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": if settings.login_type == "token":
print("------") print("------")
print("Use this url to bring your bot to a server:") print("Use this url to bring your bot to a server:")
@ -173,7 +173,7 @@ def check_configs():
exit(1) exit(1)
print("\nChoose a prefix. A prefix is what you type before a command.\n" 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 " "Can be multiple characters. You will be able to change it "
"later and add more of them.\nChoose your prefix:") "later and add more of them.\nChoose your prefix:")
confirmation = False confirmation = False