Browse Source

Make error handler in modal example more helpful

pull/9182/head
sgtlaggy 2 years ago
committed by Danny
parent
commit
dd2125e6b6
  1. 2
      examples/modals/basic.py

2
examples/modals/basic.py

@ -61,7 +61,7 @@ class Feedback(discord.ui.Modal, title='Feedback'):
await interaction.response.send_message('Oops! Something went wrong.', ephemeral=True)
# Make sure we know what the error actually is
traceback.print_tb(error.__traceback__)
traceback.print_exception(type(error), error, error.__traceback__)
client = MyClient()

Loading…
Cancel
Save