From 659dd96e34fe1c5f8156efcb8c3ce8e4b7df62d3 Mon Sep 17 00:00:00 2001 From: phixxy Date: Thu, 28 Dec 2023 14:26:38 -0800 Subject: [PATCH] Added clearer language to update function --- sparkytron3000.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sparkytron3000.py b/sparkytron3000.py index 79ea6d4..ba1ccfa 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -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'))