From 7d51814a288b21a059a9ac8c98136887c161eb5f Mon Sep 17 00:00:00 2001 From: Seaswimmer Date: Tue, 28 May 2024 18:35:17 -0400 Subject: [PATCH] misc(seautils): purposefully breaking dig so i can test nslookup fallback --- seautils/seautils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seautils/seautils.py b/seautils/seautils.py index 8ef8e1f..005a0b1 100644 --- a/seautils/seautils.py +++ b/seautils/seautils.py @@ -90,7 +90,7 @@ class SeaUtils(commands.Cog): @commands.is_owner() async def dig(self, ctx: commands.Context, name: str, type: str | None = 'A', server: str | None = None, port: int = 53) -> None: """Retrieve DNS information for a domain.""" - command_opts: list[str | int] = ['dig'] + command_opts: list[str | int] = ['digsss'] if server: command_opts.extend(['@', server]) command_opts.extend([name, type])