From 3cc1be0e02d0985566f6a9efb0e83b302adbd0ea Mon Sep 17 00:00:00 2001 From: nex Date: Thu, 16 Mar 2023 23:29:34 +0000 Subject: [PATCH] re-raise captured error --- cogs/other.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index 688d7b0..47967a5 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -869,7 +869,8 @@ class OtherCog(commands.Cog): try: _io = await _bot.loop.run_in_executor(None, _convert, text_pre) except (Exception, IOError) as e: - return await _msg.edit(content="failed. " + str(e)) + await _msg.edit(content="failed. " + str(e)) + raise e fn = "" _words = text_pre.split() while len(fn) < 28: