From bf53c6033feabfa747538c847c9d532e465ed83b Mon Sep 17 00:00:00 2001 From: Stephen <31899152+SelithK@users.noreply.github.com> Date: Thu, 12 Apr 2018 12:32:16 -0400 Subject: [PATCH] Update bot.py Grammar & adjusting user error messages --- bot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bot.py b/bot.py index aba4120..70f2daf 100644 --- a/bot.py +++ b/bot.py @@ -108,7 +108,7 @@ def auto(track_url): rep_json = json.loads(rep) if not isinstance(rep_json, list): if rep_json["title"] == "Error S-788": - raise Exception("You have probably set use_all_accounts to 'no' and haven't set your account preferences. Please set them here: https://scplanner.net/account") + raise Exception("You have probably set use_all_accounts to 'no' and have not set your account preferences. Please set them here: https://scplanner.net/account") else: print(rep_json) raise Exception("Unknown error. Please fill an issue on https://github.com/jeantoulza/scplanner-discord.") @@ -150,11 +150,11 @@ def start_bot(): """Reposts an URL on SCPlanner.""" user = ctx.message.author if not isinstance(user, discord.Member): - await bot.say("Please use this command in a server.") + await bot.say("Please use this command in a server that the bot is located in.") return if not has_role(user, config["CONFIG"]["reposters_role"]): - await bot.say("You do no have the required role.") + await bot.say("You do not have the required role to repost or use this bot.") return try: calendar_link = auto(url) @@ -166,4 +166,4 @@ def start_bot(): if __name__ == '__main__': start_bot() - #auto("https://soundcloud.com/toto/totooooo") \ No newline at end of file + #auto("https://soundcloud.com/toto/totooooo")