diff --git a/notifications_client.py b/notifications_client.py index bfedd25db..cc1eec80a 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -457,14 +457,14 @@ def _showLocalBox(notifyJson: {}, boxName: str, name = '' while len(name) < 16: name += ' ' - name = (name[:16]) if len(name) >= 16 else name + name = (name[:16]) if len(name) >= 15 else name content = speakerJson['content'] while len(content) < 40: content += ' ' if speakerJson.get('detectedLinks'): if len(speakerJson['detectedLinks']) > 0: content = '🔗' + content - content = (content[:40]) if len(content) >= 40 else content + content = (content[:40]) if len(content) >= 39 else content print(indent + str(posStr) + ' | ' + str(name) + ' | ' + str(published) + ' | ' + str(content) + ' |') ctr += 1