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')
|
pre_tags = soup.find_all('pre')
|
||||||
content = []
|
content = []
|
||||||
for pre_tag in pre_tags:
|
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():
|
if await ctx.embed_requested():
|
||||||
embed = Embed(
|
embed = Embed(
|
||||||
title=f"RFC Document {number}",
|
title=f"RFC Document {number}",
|
||||||
|
|
Loading…
Reference in a new issue