Update guild2.py
This commit is contained in:
parent
b3266a7a47
commit
1955f0b8a5
1 changed files with 4 additions and 4 deletions
|
@ -57,8 +57,8 @@ class SweeBotTestException(Exception):
|
|||
pass
|
||||
class SweeBotSystemException(Exception):
|
||||
pass
|
||||
def die():
|
||||
client.close()
|
||||
async def die():
|
||||
await client.close()
|
||||
os.system("python " + " ".join(sys.argv))
|
||||
sys.exit()
|
||||
# Client itself
|
||||
|
@ -105,7 +105,7 @@ async def on_message(message):
|
|||
if "restart" in getperms(message.author.id) or "full" in getperms(message.author.id):
|
||||
mess = await message.reply(embed=guilded.Embed(title=":sweebot-success: Command complete.",description="Restarting bot..."))
|
||||
print("[" + BLUE + "..." + RESET + "] Restarting script... (initiated by " + message.author.name + ")")
|
||||
die()
|
||||
await die()
|
||||
else:
|
||||
mess = await message.reply(embed=guilded.Embed(title=":sweebot-fail: Permission denied."))
|
||||
print("[" + RED + "FAIL" + RESET + "] Not restarting script, Permission Denied for " + message.author.name)
|
||||
|
@ -138,7 +138,7 @@ async def on_message(message):
|
|||
p.stdout.close()
|
||||
p.wait()
|
||||
await mess.edit(embed=guilded.Embed(title=":sweebot-success: Done, restarting bot...", description="```\n" + output + "```"))
|
||||
die()
|
||||
await die()
|
||||
else:
|
||||
mess = await message.reply(embed=guilded.Embed(title=":sweebot-fail: Permission denied."))
|
||||
print("[" + RED + "FAIL" + RESET + "] Not restarting script, Permission Denied for " + message.author.name)
|
||||
|
|
Loading…
Reference in a new issue