From 7a2ee0a655c005a89cbde8b14903469e4e9585dc Mon Sep 17 00:00:00 2001 From: Seaswimmer Date: Tue, 28 May 2024 17:57:10 -0400 Subject: [PATCH] misc(seautils): added an error symbol to the failed dns query result message --- seautils/seautils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seautils/seautils.py b/seautils/seautils.py index cf29811..ad22a84 100644 --- a/seautils/seautils.py +++ b/seautils/seautils.py @@ -120,7 +120,7 @@ class SeaUtils(commands.Cog): if response_data.get('status') != 'NOERROR': embed.colour = Color.red() - embed.description = "Dig query did not return `NOERROR` status." + embed.description = cf.error("Dig query did not return `NOERROR` status.") question_section = "\n".join(response_data['QUESTION_SECTION']) embed.add_field(name="Question Section", value=f"```{question_section}```", inline=False)