Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix
Browse files Browse the repository at this point in the history
ngc92 committed Jan 21, 2025
1 parent 3abd568 commit b4e8c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/discord-cluster-manager/report.py
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ async def _send_split_log(thread: discord.Thread, partial_message: str, header:

# now, format the chunks
for i, chunk in enumerate(chunks):
partial_message += f"\n\n## {header} ({i+1}/{len(chunks)}):\n"
partial_message = f"\n\n## {header} ({i+1}/{len(chunks)}):\n"
partial_message += f"```\n{_limit_length(chunk, 1900)}```"
await thread.send(partial_message)

0 comments on commit b4e8c4f

Please sign in to comment.