diff --git a/main.py b/main.py index 15b23ee..73569c1 100755 --- a/main.py +++ b/main.py @@ -239,7 +239,7 @@ def morj(bot: Bot, update: Update): text = update.effective_message.text[6:] fname = '/tmp/morj{}.png'.format(uuid4()) draw_morj(text, fname) - update.effective_message.reply_document(open(fname, 'rb')) + update.effective_message.reply_photo(open(fname, 'rb')) os.unlink(fname)