Added clearer language to update function

This commit is contained in:
phixxy 2023-12-28 14:26:38 -08:00
parent a8f919d1c6
commit 659dd96e34

View file

@ -380,7 +380,7 @@ async def update(ctx):
if ctx.author.id == 242018983241318410:
output = subprocess.run(["git","pull"],capture_output=True)
if output.stderr:
await ctx.send("Update Failed")
await ctx.send("Update Attempted")
await ctx.send(output.stderr.decode('utf-8'))
else:
await ctx.send(output.stdout.decode('utf-8'))