Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ngc92 committed Jan 21, 2025
1 parent 5e308c0 commit 5abf077
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
Expand Up @@ -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)

Expand Down

0 comments on commit 5abf077

Please sign in to comment.