From d2e6405015e07e79fcc9c85c5fa23ea59aac1b3c Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 12 Mar 2021 18:16:27 +0000 Subject: [PATCH] Wrong closing bracket --- notifications_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications_client.py b/notifications_client.py index 5622bc206..3e2114525 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -316,7 +316,7 @@ def _showLocalBox(boxName: str, startPostIndex=0, noOfPosts=10) -> None: content = speakerJson['content'] content = (content[:40] + '..') if len(content) > 40 else content print(str(posStr) + ' | ' + str(name) + ' | ' + - str(published) + ' | ' + str(content)) + ' |' + str(published) + ' | ' + str(content) + ' |') print('')