fix(seautils): fixed a missing argument
This commit is contained in:
parent
8d3f5c1d5f
commit
0ea80075f6
1 changed files with 1 additions and 1 deletions
|
@ -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}",
|
||||
|
|
Loading…
Reference in a new issue