fix(seautils): fixed a missing argument
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 26s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 41s

This commit is contained in:
Seaswimmer 2024-05-28 21:16:45 -04:00
parent 8d3f5c1d5f
commit 0ea80075f6
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -210,7 +210,7 @@ class SeaUtils(commands.Cog):
pre_tags = soup.find_all('pre')
content = []
for pre_tag in pre_tags:
text = convert_rfc_references(md(pre_tag))
text = convert_rfc_references(md(pre_tag), number)
if await ctx.embed_requested():
embed = Embed(
title=f"RFC Document {number}",