From eb609bb6be9fb6eefd36080adbb242fa4d8febf6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 15 Mar 2021 18:36:49 +0000 Subject: [PATCH] Truncation --- notifications_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notifications_client.py b/notifications_client.py index db4328224..fcd3fb98d 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -455,14 +455,14 @@ def _showLocalBox(notifyJson: {}, boxName: str, name = speakerJson['name'] else: name = '' - name = (name[:15]) if len(name) > 15 else name + name = (name[:14]) if len(name) > 14 else name while len(name) < 16: name += ' ' content = speakerJson['content'] if speakerJson.get('detectedLinks'): if len(speakerJson['detectedLinks']) > 0: content = '🔗' + content - content = (content[:39]) if len(content) > 39 else content + content = (content[:38]) if len(content) > 38 else content while len(content) < 40: content += ' ' print(indent + str(posStr) + ' | ' + str(name) + ' | ' +