diff --git a/notifications_client.py b/notifications_client.py index 5a6605dba..841cb31aa 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -425,7 +425,7 @@ def _showLocalBox(notifyJson: {}, boxName: str, notificationIcons += '❤' titleStr = boxName.upper() if notificationIcons: - while len(titleStr) < 90 - len(notificationIcons): + while len(titleStr) < 89 - len(notificationIcons): titleStr += ' ' titleStr += notificationIcons print(indent + titleStr + '\n')