From c92554dc1ff550b92465d8098fae5d06c83749b4 Mon Sep 17 00:00:00 2001 From: Septias Date: Mon, 21 Oct 2024 10:29:20 +0200 Subject: [PATCH] fix typo --- python/src/deltachat/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/deltachat/chat.py b/python/src/deltachat/chat.py index 6275a61fe..d275e09cc 100644 --- a/python/src/deltachat/chat.py +++ b/python/src/deltachat/chat.py @@ -308,7 +308,7 @@ class Chat: msg = as_dc_charpointer(text) msg_id = lib.dc_send_text_msg(self.account._dc_context, self.id, msg) if msg_id == 0: - raise ValueError("message could not be send, does chat exist?") + raise ValueError("The message could not be sent. Does the chat exist?") return Message.from_db(self.account, msg_id) def send_file(self, path, mime_type="application/octet-stream"):