Araeynn commited on
Commit
b1c6f90
1 Parent(s): aacd191

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -225,10 +225,10 @@ async def on_message(message):
225
  embed.set_image(url="attachment://image.png")
226
  await e.edit(embed=embed, attachments=[file])
227
 
228
- except Exception as e:
229
- print(e)
230
  embed = discord.Embed(title="ERROR",
231
- description=e,
232
  color=0xFF3348)
233
  await e.edit(embed=embed)
234
 
 
225
  embed.set_image(url="attachment://image.png")
226
  await e.edit(embed=embed, attachments=[file])
227
 
228
+ except Exception as exc:
229
+ print(exc)
230
  embed = discord.Embed(title="ERROR",
231
+ description=exc,
232
  color=0xFF3348)
233
  await e.edit(embed=embed)
234