Removed stupid return op

This commit is contained in:
jeantoulza 2018-07-12 18:01:13 +02:00
parent 5bc4d08b03
commit f75b32acce
1 changed files with 2 additions and 3 deletions

5
bot.py
View File

@ -80,9 +80,7 @@ def auto(track_url):
soundcloud_id = resolve(user_url).id soundcloud_id = resolve(user_url).id
except: except:
raise Exception("Could not determine logged in user...") raise Exception("Could not determine logged in user...")
return True
rep = br.open(BASE+"schedule") rep = br.open(BASE+"schedule")
try: try:
@ -155,6 +153,7 @@ def start_bot():
await bot.say("You do not have the required role to repost or use this bot.") await bot.say("You do not have the required role to repost or use this bot.")
return return
try: try:
print("Autoscheduling "+url)
calendar_link = auto(url) calendar_link = auto(url)
await bot.say(calendar_link) await bot.say(calendar_link)
except Exception as e: except Exception as e: