From 315e944b695efe79660a58707af43d8dea546b55 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 8 Feb 2023 12:02:12 +0000 Subject: [PATCH] python: cut text in Message representation to 100 characters --- python/src/deltachat/message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/deltachat/message.py b/python/src/deltachat/message.py index 0e083ad86..44469cc6c 100644 --- a/python/src/deltachat/message.py +++ b/python/src/deltachat/message.py @@ -39,7 +39,7 @@ class Message(object): return "".format( typ, self.is_system_message(), - repr(self.text[:10]), + repr(self.text[:100]), self.id, c.id, c.addr,