From 3fc088c938bf60da4e2d5f445976d1d3fda8a92e Mon Sep 17 00:00:00 2001 From: blank X Date: Thu, 27 Jan 2022 14:18:42 +0700 Subject: [PATCH] Add missing t --- sukuinote/plugins/einfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sukuinote/plugins/einfo.py b/sukuinote/plugins/einfo.py index 63386c8..f0d3ff9 100644 --- a/sukuinote/plugins/einfo.py +++ b/sukuinote/plugins/einfo.py @@ -177,7 +177,7 @@ async def get_spam_protection(entity): status = 500 try: async with session.get(f'https://api.intellivoid.net/spamprotection/v1/lookup?query={entity}') as resp: - status = resp.staus + status = resp.status json = await resp.json() except BaseException as ex: return f'- {status}: {html.escape(type(ex).__name__)}: {html.escape(str(ex))}'