From c97c27004077697dbfebfb84260dade9004c7ad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A6=CF=86?= <42910943+Brawlence@users.noreply.github.com> Date: Sat, 8 Apr 2023 07:55:16 +0300 Subject: [PATCH] Send_pictures small fix (#546) --- extensions/send_pictures/script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/send_pictures/script.py b/extensions/send_pictures/script.py index 678592f5..fddde30c 100644 --- a/extensions/send_pictures/script.py +++ b/extensions/send_pictures/script.py @@ -25,7 +25,7 @@ def caption_image(raw_image): def generate_chat_picture(picture, name1, name2): - text = f'*{name1} sends {name2} a picture that contains the following: "{caption_image(picture)}"*' + text = f'*{name1} sends {name2} a picture that contains the following: “{caption_image(picture)}”*' # lower the resolution of sent images for the chat, otherwise the log size gets out of control quickly with all the base64 values in visible history picture.thumbnail((300, 300)) buffer = BytesIO()