This commit is contained in:
jeantoulza 2018-07-12 17:42:01 +02:00
commit 5bc4d08b03
1 changed files with 4 additions and 5 deletions

9
bot.py
View File

@ -110,7 +110,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.")
@ -148,11 +148,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)
@ -163,5 +163,4 @@ def start_bot():
bot.run(config["CONFIG"]["bot_token"])
if __name__ == '__main__':
#start_bot()
auto("https://soundcloud.com/toto/totooooo")
start_bot()