From 7257ea332720e76f74aafdcf9ed4c9171895f11d Mon Sep 17 00:00:00 2001 From: bakatrouble Date: Sat, 16 Nov 2019 03:41:58 +0300 Subject: [PATCH] remove test exception --- bots/modules/overlay.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bots/modules/overlay.py b/bots/modules/overlay.py index 620834b..3d4b7ce 100644 --- a/bots/modules/overlay.py +++ b/bots/modules/overlay.py @@ -39,7 +39,6 @@ class OverlayBotModuleConfig(TelegramBotModuleConfig): im.paste(overlay, ((w - min_side) // 2, (h - min_side) // 2), overlay) im.save(out) update.effective_message.reply_photo(open(out, 'rb'), caption=self.comment) - raise Exception('hi') def build_dispatcher(self, dispatcher: Dispatcher): dispatcher.add_handler(CommandHandler('start', self.start_handler))