From 421ce8b759177c2e7d94be918b16fbffedb33bf0 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 15 Mar 2021 20:00:24 +0000 Subject: [PATCH] Less spacing --- notifications_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications_client.py b/notifications_client.py index 1eba8d3f1..6da50feaa 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -425,7 +425,7 @@ def _showLocalBox(notifyJson: {}, boxName: str, notificationIcons += ' ❤' titleStr = '\33[7m' + boxName.upper() + '\33[0m' if notificationIcons: - while len(titleStr) < 99 - len(notificationIcons): + while len(titleStr) < 95 - len(notificationIcons): titleStr += ' ' titleStr += notificationIcons print(indent + titleStr + '\n')