From 8c591ee55e65121772e4b06df0a5f365e06c4382 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 15 Mar 2021 18:38:45 +0000 Subject: [PATCH] Remove str --- notifications_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notifications_client.py b/notifications_client.py index fcd3fb98d..7abdb036d 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -465,8 +465,8 @@ def _showLocalBox(notifyJson: {}, boxName: str, content = (content[:38]) if len(content) > 38 else content while len(content) < 40: content += ' ' - print(indent + str(posStr) + ' | ' + str(name) + ' | ' + - str(published) + ' | ' + str(content) + ' |') + print(indent + str(posStr) + ' | ' + name + ' | ' + + published + ' | ' + content + ' |') ctr += 1 print('')