From d8a8b281e4bce1ec0850d1c97220c39754b912f3 Mon Sep 17 00:00:00 2001 From: Sean Corrigan Date: Thu, 24 Dec 2020 16:50:13 -0500 Subject: [PATCH] Fix issue with font overlap --- PIcontroller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIcontroller.py b/PIcontroller.py index 350199d..4f3b172 100644 --- a/PIcontroller.py +++ b/PIcontroller.py @@ -26,7 +26,7 @@ def fixformatting(message): fixedmessage = [""] counter = 0 for word in message.split(" "): - if counter + len(word) >= 18: + if counter + len(word) >= 22: counter = 0 fixedmessage.append("\n") fixedmessage.append("{} ".format(word))