From 7148bd18b109747a7469669f5985baf3b0c0d345 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 7 Aug 2023 17:34:41 -0400 Subject: [PATCH] misc: added more formatting to an error message --- galaxy/galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 2e03fdd..4d82776 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -43,7 +43,7 @@ class Galaxy(commands.Cog): except subprocess.CalledProcessError as e: await ctx.send(f"Error executing `nslookup`: `{e}`") except FileNotFoundError: - await ctx.send("`nslookup` command not found. Make sure you have nslookup installed and it's in your system PATH.") + await ctx.send("`nslookup` command not found. Make sure you have `nslookup` installed and it's in your system PATH.") @commands.command()