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))