Add missing t
This commit is contained in:
parent
179e6c5455
commit
3fc088c938
|
@ -177,7 +177,7 @@ async def get_spam_protection(entity):
|
||||||
status = 500
|
status = 500
|
||||||
try:
|
try:
|
||||||
async with session.get(f'https://api.intellivoid.net/spamprotection/v1/lookup?query={entity}') as resp:
|
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()
|
json = await resp.json()
|
||||||
except BaseException as ex:
|
except BaseException as ex:
|
||||||
return f'- <b>{status}:</b> {html.escape(type(ex).__name__)}: {html.escape(str(ex))}'
|
return f'- <b>{status}:</b> {html.escape(type(ex).__name__)}: {html.escape(str(ex))}'
|
||||||
|
|
Loading…
Reference in New Issue