fix(aurora): fixed an AttributeError in changes_factory
Some checks failed
Actions / Build Documentation (MkDocs) (pull_request) Successful in 28s
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 40s

This commit is contained in:
Seaswimmer 2024-08-19 17:46:05 -04:00
parent 1c3b9377b5
commit 709042f057
Signed by: cswimr
GPG key ID: 3813315477F26F82

View file

@ -277,7 +277,7 @@ async def changes_factory(interaction: Interaction, moderation: Moderation) -> E
embed.add_field(
name=change.type.title(),
value=change_str.join("\n"),
value="\n".join(change_str),
inline=False,
)