We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f471891 commit fc313aaCopy full SHA for fc313aa
modules/eval.py
@@ -106,7 +106,13 @@ async def eval(
106
await ctx.message.add_reaction("\U00002705")
107
108
if len(output) > 1000:
109
- codeblock = await self.bot.mb_client.create_paste(files=[mystbin.File(content=output, filename="eval.py")])
+ try:
110
+ codeblock = await self.bot.mb_client.create_paste(
111
+ files=[mystbin.File(content=output, filename="eval.py")]
112
+ )
113
+ except mystbin.APIException:
114
+ await ctx.send("Your output was too long to provide in any sensible manner.")
115
+ return
116
117
elif output:
118
codeblock = formatters.to_codeblock(output, escape_md=False)
0 commit comments